/* ================================================================
   GLOBALREACH.CSS — Premium Global Reach Page Styles
   20 Microns | globalreach.php
   Theme: #7FA69B Sage Green | Font: Exo 2
   ================================================================ */

/* ================================================================
   SECTION 1 — HERO (85vh)
   ================================================================ */
.gr-hero {
    height: 85vh;
    min-height: 600px;
    background: linear-gradient(145deg, #06101a 0%, #0d1820 40%, #112030 75%, #080f1a 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 80px 0 30px;
}

/* Smooth gradient fade at hero bottom */
.gr-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 90px;
    background: linear-gradient(to bottom, transparent 0%, rgba(6,16,26,0.60) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Canvas overlay */
#grCanvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Animated grid */
.gr-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(127,166,155,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(127,166,155,0.06) 1px, transparent 1px);
    background-size: 64px 64px;
    animation: grGridDrift 24s linear infinite;
    z-index: 0;
}
@keyframes grGridDrift {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(-64px, -64px); }
}

/* Ambient glow orbs */
.gr-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.gr-glow.g1 {
    width: 800px; height: 800px;
    top: -250px; right: -80px;
    background: radial-gradient(circle, rgba(127,166,155,0.11) 0%, transparent 65%);
    filter: blur(70px);
    animation: grGlowPulse 9s ease-in-out infinite alternate;
}
.gr-glow.g2 {
    width: 500px; height: 500px;
    bottom: -150px; left: -100px;
    background: radial-gradient(circle, rgba(127,166,155,0.08) 0%, transparent 65%);
    filter: blur(55px);
    animation: grGlowPulse 11s ease-in-out infinite alternate-reverse;
}
.gr-glow.g3 {
    width: 360px; height: 360px;
    top: 30%; left: 38%;
    background: radial-gradient(circle, rgba(80,140,210,0.05) 0%, transparent 70%);
    filter: blur(40px);
    animation: grGlowPulse 7s ease-in-out infinite alternate;
    animation-delay: -3s;
}
@keyframes grGlowPulse {
    0%   { opacity: 0.5; transform: scale(0.92); }
    100% { opacity: 1;   transform: scale(1.08); }
}

.gr-hero .container { position: relative; z-index: 2; }

/* Hero 2-col layout */
.gr-hero-layout {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 44px;
    align-items: center;
}

/* Breadcrumb */
.gr-hero-crumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 11px;
    color: rgba(255,255,255,0.38);
    letter-spacing: 0.03em;
}
.gr-hero-crumb a {
    color: rgba(255,255,255,0.38);
    text-decoration: none;
    transition: color 0.2s;
}
.gr-hero-crumb a:hover { color: #7FA69B; }
.gr-hero-crumb i { font-size: 9px; opacity: 0.5; }

/* Badge */
.gr-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(127,166,155,0.12);
    border: 1px solid rgba(127,166,155,0.28);
    border-radius: 100px;
    padding: 6px 16px;
    margin-bottom: 14px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #99BFB3;
}
.gr-hero-badge .badge-pulse {
    width: 7px; height: 7px;
    background: #7FA69B;
    border-radius: 50%;
    animation: grBadgePulse 1.8s ease-in-out infinite;
}
@keyframes grBadgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(127,166,155,0.5); }
    50%       { box-shadow: 0 0 0 8px rgba(127,166,155,0); }
}

/* Title */
.gr-hero-title {
    font-size: clamp(2.2rem, 3.8vw, 4.4rem);
    font-weight: 200;
    line-height: 1.0;
    color: #ffffff;
    margin-bottom: 14px;
    letter-spacing: -0.025em;
}
.gr-hero-title .accent {
    font-weight: 800;
    background: linear-gradient(135deg, #7FA69B 0%, #C2DDD7 40%, #99BFB3 70%, #7FA69B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: grGradientShift 4s ease-in-out infinite;
}
@keyframes grGradientShift {
    0%, 100% { background-position: 0% 50%; }
    50%       { background-position: 100% 50%; }
}

/* Subtitle */
.gr-hero-subtitle {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    max-width: 500px;
}
.gr-hero-subtitle .sub-line {
    width: 3px;
    min-height: 32px;
    background: linear-gradient(180deg, rgba(127,166,155,0.9) 0%, rgba(127,166,155,0.1) 100%);
    border-radius: 2px;
    flex-shrink: 0;
    margin-top: 3px;
}
.gr-hero-subtitle p {
    font-size: 0.97rem;
    color: rgba(255,255,255,0.52);
    line-height: 1.72;
    margin: 0;
}

/* CTA Buttons */
.gr-hero-cta {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.gr-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #7FA69B 0%, #6B9186 100%);
    color: #fff;
    padding: 11px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 28px rgba(127,166,155,0.32);
}
.gr-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(127,166,155,0.42);
    color: #fff;
    background: linear-gradient(135deg, #99BFB3 0%, #7FA69B 100%);
}
.gr-btn-primary i { font-size: 14px; transition: transform 0.3s; }
.gr-btn-primary:hover i { transform: translateX(4px); }

.gr-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.07);
    border: 1.5px solid rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.78);
    padding: 11px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.35s;
    backdrop-filter: blur(10px);
}
.gr-btn-ghost:hover {
    background: rgba(255,255,255,0.11);
    border-color: rgba(127,166,155,0.45);
    color: #99BFB3;
    transform: translateY(-3px);
}

/* Stats strip */
.gr-hero-stats {
    display: flex;
    flex-wrap: wrap;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(12px);
}
.gr-stat-item {
    flex: 1;
    padding: 11px 14px;
    text-align: center;
    position: relative;
    min-width: 80px;
}
.gr-stat-item + .gr-stat-item::before {
    content: '';
    position: absolute;
    left: 0; top: 18%; bottom: 18%;
    width: 1px;
    background: rgba(255,255,255,0.07);
}
.gr-stat-num {
    font-size: 1.38rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 3px;
}
.gr-stat-num .accent { color: #7FA69B; }
.gr-stat-label {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.32);
}

/* ================================================================
   HERO RIGHT — GLOBE VISUAL
   ================================================================ */
.gr-hero-globe {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 305px;
}

.gr-globe-core {
    position: relative;
    width: 248px; height: 248px;
}

/* Rings */
.gr-globe-ring {
    position: absolute;
    top: 50%; left: 50%;
    transform-origin: 50% 50%;
    border-radius: 50%;
}
.gr-globe-ring.r1 {
    width: 248px; height: 248px;
    margin-left: -124px; margin-top: -124px;
    border: 1px dashed rgba(127,166,155,0.18);
    animation: grGlobeSpin 32s linear infinite;
}
.gr-globe-ring.r2 {
    width: 188px; height: 188px;
    margin-left: -94px; margin-top: -94px;
    border: 1px solid rgba(127,166,155,0.24);
    animation: grGlobeSpin 22s linear infinite reverse;
}
.gr-globe-ring.r3 {
    width: 128px; height: 128px;
    margin-left: -64px; margin-top: -64px;
    border: 1px solid rgba(127,166,155,0.30);
    animation: grGlobeSpin 14s linear infinite;
}
@keyframes grGlobeSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* Globe sphere */
.gr-globe-sphere {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 116px; height: 116px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 34% 34%, rgba(127,166,155,0.45) 0%, rgba(127,166,155,0.08) 45%, transparent 70%),
        linear-gradient(145deg, rgba(127,166,155,0.18) 0%, rgba(127,166,155,0.04) 100%);
    border: 2px solid rgba(127,166,155,0.40);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        inset 0 0 40px rgba(127,166,155,0.08),
        0 0 70px rgba(127,166,155,0.14),
        0 0 130px rgba(127,166,155,0.06);
    z-index: 2;
    animation: grSphereGlow 5s ease-in-out infinite alternate;
}
@keyframes grSphereGlow {
    0%   { box-shadow: inset 0 0 40px rgba(127,166,155,0.08), 0 0 70px rgba(127,166,155,0.14), 0 0 130px rgba(127,166,155,0.06); }
    100% { box-shadow: inset 0 0 60px rgba(127,166,155,0.14), 0 0 100px rgba(127,166,155,0.22), 0 0 180px rgba(127,166,155,0.10); }
}
.gr-globe-icon {
    font-size: 2.2rem;
    background: linear-gradient(135deg, #7FA69B, #C2DDD7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: grIconSpin 20s linear infinite;
}
@keyframes grIconSpin {
    from { filter: hue-rotate(0deg); }
    to   { filter: hue-rotate(30deg); }
}

/* Orbit groups — each group rotates and carries a dot */
.gr-orbit-group {
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    transform-origin: 0 0;
    pointer-events: none;
}
.gr-og-1 { animation: grOrbitCC 28s linear infinite; }
.gr-og-2 { animation: grOrbitCW 22s linear infinite; }
.gr-og-3 { animation: grOrbitCC 18s linear infinite 3s; }
.gr-og-4 { animation: grOrbitCW 16s linear infinite 1.5s; }
.gr-og-5 { animation: grOrbitCC 14s linear infinite 6s; }
.gr-og-6 { animation: grOrbitCW 26s linear infinite 4s; }

@keyframes grOrbitCC { from { transform: rotate(0deg); }  to { transform: rotate(360deg); }  }
@keyframes grOrbitCW { from { transform: rotate(0deg); }  to { transform: rotate(-360deg); } }

.gr-orbit-dot {
    position: absolute;
    width: 10px; height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.88);
    top: -5px;
}
/* Position each dot at its ring radius */
.gr-og-1 .gr-orbit-dot { left: 118px; } /* outer ring r=124 */
.gr-og-2 .gr-orbit-dot { left: -128px; }
.gr-og-3 .gr-orbit-dot { left: 88px; }  /* middle ring r=94 */
.gr-og-4 .gr-orbit-dot { left: -98px; }
.gr-og-5 .gr-orbit-dot { left: 58px; }  /* inner ring r=64 */
.gr-og-6 .gr-orbit-dot { left: -68px; }

.gr-orbit-dot.d-americas { background: #4A90E2; box-shadow: 0 0 10px rgba(74,144,226,0.7); }
.gr-orbit-dot.d-europe   { background: #9B59B6; box-shadow: 0 0 10px rgba(155,89,182,0.7); }
.gr-orbit-dot.d-africa   { background: #FF6B35; box-shadow: 0 0 10px rgba(255,107,53,0.7); }
.gr-orbit-dot.d-asia     { background: #E74C3C; box-shadow: 0 0 10px rgba(231,76,60,0.7); }
.gr-orbit-dot.d-india    { background: #FFD700; box-shadow: 0 0 10px rgba(255,215,0,0.7); }

/* Floating region badges */
.gr-region-badges {
    position: absolute;
    width: 100%; height: 100%;
    top: 0; left: 0;
    pointer-events: none;
}
.gr-region-badge {
    position: absolute;
    background: rgba(10,20,30,0.90);
    border: 1px solid rgba(127,166,155,0.28);
    border-radius: 8px;
    padding: 5px 10px;
    backdrop-filter: blur(16px);
    z-index: 5;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(0,0,0,0.28);
    pointer-events: all;
}
.gr-region-badge.rb-americas { top: 16%; left: -12px; animation: grFloat 4.5s ease-in-out infinite; }
.gr-region-badge.rb-asia     { top: 8%;  right: -16px; animation: grFloat 5.5s ease-in-out infinite 1.2s; }
.gr-region-badge.rb-africa   { bottom: 26%; left: -8px;  animation: grFloat 4s ease-in-out infinite 0.6s; }
.gr-region-badge.rb-europe   { bottom: 36%; right: -12px; animation: grFloat 6s ease-in-out infinite 2s; }
@keyframes grFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-9px); }
}
.gr-rb-label {
    font-size: 8px;
    color: rgba(255,255,255,0.32);
    text-transform: uppercase;
    letter-spacing: 0.11em;
    margin-bottom: 2px;
    font-weight: 700;
}
.gr-rb-value {
    font-size: 11px;
    color: rgba(255,255,255,0.82);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}
.gr-rb-value .rb-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}
.rb-dot.americas { background: #4A90E2; }
.rb-dot.europe   { background: #9B59B6; }
.rb-dot.africa   { background: #FF6B35; }
.rb-dot.asia     { background: #E74C3C; }

/* Scroll indicator */
.gr-scroll-indicator {
    position: absolute;
    bottom: 30px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column;
    align-items: center; gap: 8px;
    z-index: 5;
}
.gr-scroll-mouse {
    width: 22px; height: 34px;
    border: 2px solid rgba(127,166,155,0.36);
    border-radius: 11px;
    display: flex; justify-content: center;
    padding-top: 5px;
}
.gr-scroll-wheel {
    width: 3px; height: 7px;
    background: #7FA69B;
    border-radius: 2px;
    animation: grScrollWheel 2.2s ease-in-out infinite;
}
@keyframes grScrollWheel {
    0%   { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(10px); opacity: 0; }
}
.gr-scroll-text {
    font-size: 9px;
    color: rgba(255,255,255,0.26);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 700;
}

/* ================================================================
   SECTION 2 — GLOBAL PRESENCE (MAP)
   ================================================================ */
.gr-presence {
    padding: 80px 0 60px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}
.gr-presence::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(127,166,155,0.4) 35%, rgba(127,166,155,0.6) 50%, rgba(127,166,155,0.4) 65%, transparent);
}
.gr-presence::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(127,166,155,0.042) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}
.gr-presence .container { position: relative; z-index: 1; }

/* Section Header */
.gr-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(127,166,155,0.10);
    border: 1px solid rgba(127,166,155,0.25);
    border-radius: 100px;
    padding: 5px 15px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #5A8070;
    margin-bottom: 14px;
}
.gr-section-badge .dot {
    width: 5px; height: 5px;
    background: #7FA69B;
    border-radius: 50%;
}
.gr-section-title {
    font-size: clamp(1.8rem, 3.2vw, 2.8rem);
    font-weight: 200;
    color: #1e293b;
    line-height: 1.12;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}
.gr-section-title strong { font-weight: 700; color: #1e293b; }
.gr-section-title .accent { font-weight: 800; color: #7FA69B; }
.gr-section-desc {
    font-size: 0.96rem;
    color: #5C6E6A;
    line-height: 1.75;
    max-width: 620px;
}

/* Header row: title left, filter right */
.gr-presence-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 36px;
    gap: 24px;
    flex-wrap: wrap;
}
.gr-presence-header-left { flex: 1; min-width: 260px; }
.gr-presence-header-right { flex-shrink: 0; }

/* Region filter tabs */
.gr-region-filter {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.gr-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(127,166,155,0.07);
    border: 1px solid rgba(127,166,155,0.18);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #5C6E6A;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Exo 2', sans-serif;
    text-transform: uppercase;
}
.gr-filter-btn:hover,
.gr-filter-btn.active {
    background: #7FA69B;
    border-color: #7FA69B;
    color: #fff;
    box-shadow: 0 4px 14px rgba(127,166,155,0.32);
}
.gr-filter-count {
    background: rgba(255,255,255,0.22);
    border-radius: 50px;
    padding: 1px 6px;
    font-size: 9px;
}
.gr-filter-btn:not(.active) .gr-filter-count {
    background: rgba(127,166,155,0.18);
    color: #5A8070;
}

/* ================================================================
   MAP CONTAINER (SVG WORLD MAP)
   ================================================================ */
.gr-map-wrapper {
    position: relative;
    background: linear-gradient(135deg, #eef6f3 0%, #e4f0ec 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 4px 32px rgba(127,166,155,0.10),
        0 0 0 1px rgba(127,166,155,0.12);
    margin-bottom: 40px;
}

.gr-map-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px 14px;
    background: rgba(255,255,255,0.92);
    border-bottom: 1px solid rgba(127,166,155,0.10);
    position: relative;
    z-index: 1000;
    backdrop-filter: blur(10px);
}
.gr-map-title {
    font-size: 12px;
    font-weight: 800;
    color: #1e293b;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}
.gr-map-title i { color: #7FA69B; font-size: 14px; }
.gr-map-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: #8A9C98;
    font-weight: 500;
}
.gr-map-hint i { font-size: 10px; color: #7FA69B; }
.gr-map-hint span + span { border-left: 1px solid rgba(127,166,155,0.2); padding-left: 8px; }

/* SVG map outer container */
.gr-map-svg-outer {
    position: relative;
    background: linear-gradient(135deg, #eef6f3 0%, #e4f0ec 100%);
    overflow: hidden;
}

/* world-map-wrapper-creative override for full-width display */
.gr-map-svg-outer .world-map-wrapper-creative {
    position: relative;
    width: 100%;
    min-height: 480px;
    overflow: hidden;
    background: transparent;
}
.gr-map-svg-outer .world-map-zoomable {
    width: 100%;
    transform-origin: center center;
    transition: transform 0.2s ease;
    cursor: default;
}
.gr-map-svg-outer .world-map-zoomable.zoomed { cursor: grab; }
.gr-map-svg-outer .world-map-zoomable.zoomed:active { cursor: grabbing; }
.gr-map-svg-outer .world-map-svg {
    position: relative;
    width: 100%;
    height: auto;
    display: block;
    line-height: 0;
}
.gr-map-svg-outer .world-map-svg img {
    width: 100%;
    height: auto;
    display: block;
}
.gr-map-svg-outer .map-zoom-controls {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 100;
}

/* ===== LABELED MARKERS — GLOBALREACH ===== */
.gr-labeled-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Label pill renders above the dot */
.gr-pin-label {
    background: rgba(255,255,255,0.97);
    border: 1.5px solid rgba(127,166,155,0.35);
    border-radius: 6px;
    padding: 3px 9px;
    font-size: 9px;
    font-weight: 800;
    white-space: nowrap;
    color: #1e293b;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow: 0 3px 10px rgba(0,0,0,0.12);
    pointer-events: none;
    font-family: 'Exo 2', sans-serif;
    transition: all 0.25s;
    position: relative;
    margin-bottom: 3px;
    line-height: 1.4;
}
.gr-pin-label::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0; height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid rgba(127,166,155,0.35);
    transition: border-top-color 0.25s;
}
.location-marker:hover .gr-pin-label {
    background: #7FA69B;
    border-color: #7FA69B;
    color: #fff;
    box-shadow: 0 4px 14px rgba(127,166,155,0.38);
}
.location-marker:hover .gr-pin-label::after { border-top-color: #7FA69B; }

/* Hidden state during region filter */
.location-marker.region-hidden {
    opacity: 0.10 !important;
    pointer-events: none !important;
}


/* Map legend bar */
.gr-map-legend {
    padding: 14px 22px;
    background: rgba(255,255,255,0.96);
    border-top: 1px solid rgba(127,166,155,0.08);
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    backdrop-filter: blur(8px);
}
.gr-legend-title {
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #8A9C98;
    flex-shrink: 0;
}
.gr-legend-items {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.gr-legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: #4a5568;
    font-weight: 600;
}
.gr-legend-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.gr-legend-dot.hq        { background: linear-gradient(135deg, #FFD700, #FFA500); }
.gr-legend-dot.corporate { background: linear-gradient(135deg, #4A90E2, #357ABD); }
.gr-legend-dot.mfg       { background: linear-gradient(135deg, #E74C3C, #C0392B); }
.gr-legend-dot.export    { background: linear-gradient(135deg, #7FA69B, #5A8070); }

/* ================================================================
   GLOBAL STATS STRIP
   ================================================================ */
.gr-stats-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 0;
}
.gr-stats-card {
    background: #fff;
    border: 1px solid rgba(127,166,155,0.12);
    border-radius: 20px;
    padding: 26px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 18px rgba(127,166,155,0.055);
}
.gr-stats-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #7FA69B, #C2DDD7, #7FA69B);
    background-size: 200% 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    animation: grBarShimmer 3s ease infinite;
}
@keyframes grBarShimmer {
    0%   { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}
.gr-stats-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(127,166,155,0.14);
    border-color: rgba(127,166,155,0.22);
}
.gr-stats-card:hover::before { transform: scaleX(1); }

.gr-stats-icon {
    width: 50px; height: 50px;
    border-radius: 14px;
    background: rgba(127,166,155,0.09);
    border: 1px solid rgba(127,166,155,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 22px;
    color: #7FA69B;
    transition: all 0.35s;
}
.gr-stats-card:hover .gr-stats-icon {
    background: #7FA69B;
    color: #fff;
    border-color: #7FA69B;
    box-shadow: 0 6px 22px rgba(127,166,155,0.34);
    transform: scale(1.08) rotate(-5deg);
}
.gr-stats-num {
    font-size: 2.4rem;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
    margin-bottom: 7px;
}
.gr-stats-num .suffix { color: #7FA69B; font-size: 1.8rem; }
.gr-stats-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #8A9C98;
}

/* ================================================================
   SECTION 3 — CONNECT BANNER
   ================================================================ */
.gr-connect {
    padding: 28px 0 0;
    margin-bottom: 0;
    background: linear-gradient(145deg, #08121c 0%, #0f1923 55%, #142030 100%);
    position: relative;
    overflow: hidden;
}
.gr-connect::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(127,166,155,0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(127,166,155,0.045) 1px, transparent 1px);
    background-size: 52px 52px;
    animation: grConnectGrid 28s linear infinite;
    pointer-events: none;
}
@keyframes grConnectGrid {
    0%   { background-position: 0 0; }
    100% { background-position: -52px -52px; }
}
.gr-connect-glow {
    position: absolute;
    width: 600px; height: 400px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse, rgba(127,166,155,0.10), transparent 70%);
    filter: blur(50px);
    pointer-events: none;
}
.gr-connect .container { position: relative; z-index: 2; }
.gr-connect-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 28px;
    align-items: center;
}
.gr-connect-headline {
    font-size: clamp(1.05rem, 2vw, 1.5rem);
    font-weight: 300;
    color: rgba(255,255,255,0.78);
    line-height: 1.4;
}
.gr-connect-headline strong { font-weight: 700; color: #fff; }
.gr-connect-headline .accent { color: #7FA69B; font-weight: 700; }
.gr-connect-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px 24px;
    background: rgba(127,166,155,0.08);
    border: 1px solid rgba(127,166,155,0.20);
    border-radius: 16px;
    backdrop-filter: blur(12px);
}
.gr-connect-center i {
    font-size: 1.7rem;
    background: linear-gradient(135deg, #7FA69B, #C2DDD7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.gr-connect-name {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}
.gr-connect-email {
    font-size: 12px;
    color: rgba(255,255,255,0.44);
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 500;
}
.gr-connect-email:hover { color: #7FA69B; }
.gr-connect-social-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}
.gr-connect-social-label {
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255,255,255,0.22);
}
.gr-connect-social {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.gr-connect-social a {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.40);
    font-size: 14px;
    text-decoration: none;
    transition: all 0.32s;
}
.gr-connect-social a:hover {
    background: rgba(127,166,155,0.22);
    border-color: rgba(127,166,155,0.45);
    color: #7FA69B;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(127,166,155,0.22);
}

/* Footer wave-divider override for dark banner */
.gr-connect ~ .footer-premium .footer-wave-divider,
.footer-wave-divider { background: #0f1923; }

/* ================================================================
   SCROLL REVEAL
   ================================================================ */
[data-gr-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.72s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.72s cubic-bezier(0.4, 0, 0.2, 1);
}
[data-gr-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}
[data-gr-reveal-delay="1"] { transition-delay: 0.10s; }
[data-gr-reveal-delay="2"] { transition-delay: 0.20s; }
[data-gr-reveal-delay="3"] { transition-delay: 0.30s; }
[data-gr-reveal-delay="4"] { transition-delay: 0.40s; }
[data-gr-reveal-delay="5"] { transition-delay: 0.50s; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
    .gr-hero-layout { grid-template-columns: 1fr; gap: 36px; }
    .gr-hero-globe  { display: none; }
    .gr-hero        { height: 85vh; min-height: 580px; padding: 80px 0 36px; }
    .gr-stats-strip { grid-template-columns: repeat(2, 1fr); }
    .gr-connect-inner { grid-template-columns: 1fr 1fr; gap: 20px; }
    .gr-connect-headline { font-size: 1rem; }
}
@media (max-width: 768px) {
    .gr-hero        { height: auto; min-height: 85vh; padding: 80px 0 50px; }
    #grWorldMap     { height: 370px; }
    .gr-presence    { padding: 55px 0 40px; }
    .gr-presence-header { flex-direction: column; align-items: flex-start; gap: 18px; }
    .gr-region-filter   { justify-content: flex-start; }
    .gr-stats-strip { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .gr-connect-inner { grid-template-columns: 1fr; text-align: center; gap: 18px; }
    .gr-connect-social-wrap { align-items: center; }
    .gr-map-legend  { gap: 10px; }
    .gr-map-hint span:last-child { display: none; }
}
@media (max-width: 480px) {
    .gr-hero-stats { border-radius: 12px; }
    .gr-stat-item  { padding: 9px 10px; }
    .gr-stat-num   { font-size: 1.25rem; }
    .gr-stats-strip { grid-template-columns: 1fr 1fr; gap: 12px; }
    .gr-stats-num  { font-size: 2rem; }
    #grWorldMap    { height: 300px; }
    .gr-hero-title { font-size: clamp(2rem, 8vw, 3rem); }
    .gr-region-filter { gap: 6px; }
    .gr-filter-btn { padding: 7px 12px; font-size: 10px; }
}
