/* ============================================
   Bottom Line Consultancy Firm — Site styles
   ============================================ */

:root {
    /* Brand palette — Bottom Line */
    --green: #009A66;           /* Bottom Green 100% */
    --green-dark: #007A51;      /* Bottom Green 120% */
    --green-deep: #00553A;      /* Bottom Green 150% */
    --green-mid: #66C2A1;       /* Bottom Green 60% */
    --green-tint: #E6F5EF;      /* Bottom Green 10% */
    --green-pale: #F4FBF8;
    --grey-logo: #74777C;       /* Quiet Gray 100% */
    --grey-dark: #54565A;       /* Quiet Gray 120% */
    --grey-deep: #2F3134;       /* Quiet Gray 150% */
    --grey-mid:  #9C9DA0;       /* Quiet Gray 60% */
    --grey-soft: #C5C6C9;       /* Quiet Gray 30% */
    --ink: #2F3134;             /* using Quiet Gray 150% as primary ink */
    --ink-soft: #54565A;        /* Quiet Gray 120% */
    --muted: #74777C;           /* Quiet Gray 100% */
    --border: #EEEEF0;          /* Quiet Gray 10% */
    --bg: #FFFFFF;              /* Paper White */
    --bg-soft: #FAFBFC;
    --shadow-sm: 0 1px 2px rgba(20, 36, 28, 0.04), 0 1px 3px rgba(20, 36, 28, 0.06);
    --shadow-md: 0 4px 12px rgba(20, 36, 28, 0.06), 0 2px 4px rgba(20, 36, 28, 0.04);
    --shadow-lg: 0 20px 40px -12px rgba(20, 36, 28, 0.12), 0 8px 16px -8px rgba(20, 36, 28, 0.08);
    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 24px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --container: 1200px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ----------- Layout ----------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.section { padding: 72px 0; position: relative; }
.section-sm { padding: 48px 0; }
.section-tight { padding: 40px 0; }

.section-soft { background: var(--bg-soft); }
.section-tint { background: var(--green-pale); }

/* ----------- Typography ----------- */
h1, h2, h3, h4, h5 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--ink);
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.25rem, 4vw + 1rem, 3.75rem); font-weight: 700; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.75rem, 2.5vw + 0.75rem, 2.5rem); }
h3 { font-size: 1.375rem; }
h4 { font-size: 1.125rem; font-weight: 600; }

p { color: var(--ink-soft); }

.lead {
    font-size: 1.125rem;
    color: var(--ink-soft);
    line-height: 1.65;
    max-width: 60ch;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--green);
    margin-bottom: 16px;
}

.eyebrow::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 1.5px;
    background: var(--green);
}

.section-head { max-width: 720px; margin-bottom: 40px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { font-size: 1.0625rem; color: var(--muted); }

/* ----------- Buttons ----------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all 0.2s var(--ease);
    white-space: nowrap;
}

.btn-primary {
    background: var(--green);
    color: white;
    box-shadow: 0 1px 2px rgba(0, 85, 58, 0.2), 0 4px 12px rgba(0, 154, 102, 0.25);
}
.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 85, 58, 0.25), 0 8px 20px rgba(0, 154, 102, 0.3);
}

.btn-ghost {
    color: var(--ink);
    border: 1px solid var(--border);
    background: white;
}
.btn-ghost:hover {
    border-color: var(--green);
    color: var(--green);
}

.btn-arrow {
    color: var(--green);
    font-weight: 600;
    padding: 0;
    gap: 6px;
}
.btn-arrow .arrow { transition: transform 0.2s var(--ease); }
.btn-arrow:hover .arrow { transform: translateX(4px); }

/* ----------- Header ----------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.site-header.scrolled {
    border-bottom-color: var(--border);
    background: rgba(255, 255, 255, 0.92);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 92px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 300;
    font-size: 1.5rem;
    letter-spacing: -0.01em;
    color: var(--grey-logo);
    line-height: 1;
    position: relative;
    text-decoration: none;
}
.brand-logo {
    height: 72px;
    width: auto;
    display: block;
}
.brand-logo-footer {
    height: 72px;
    width: auto;
    display: block;
    margin-bottom: 16px;
}
@media (max-width: 720px) {
    .brand-logo { height: 56px; }
}
.brand-bottom { font-weight: 300; }
.brand-line { color: var(--green); font-weight: 300; padding-left: 2px; }
.brand-tag {
    display: block;
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--green);
    letter-spacing: 0.05em;
    margin-top: 2px;
}
.brand-wrap { display: flex; flex-direction: column; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}
.nav-links a {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: 0.01em;
    transition: color 0.15s var(--ease), background 0.15s var(--ease);
}
.nav-links a:hover { color: var(--green); }
.nav-links a.active { color: var(--green); font-weight: 700; }

.nav-cta { margin-left: 16px; }

.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}
.nav-toggle span {
    width: 20px;
    height: 1.5px;
    background: var(--ink);
    position: relative;
    transition: all 0.2s var(--ease);
}
.nav-toggle span::before,
.nav-toggle span::after {
    content: '';
    position: absolute;
    left: 0;
    width: 20px;
    height: 1.5px;
    background: var(--ink);
    transition: all 0.2s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

/* ----------- Hero (home) ----------- */
.hero {
    position: relative;
    padding: 56px 0 72px;
    overflow: hidden;
    background: linear-gradient(180deg, var(--green-pale) 0%, white 80%);
}

/* Full-hero video background variant */
.hero-video-bg {
    padding: 120px 0 140px;
    min-height: 78vh;
    background: #050f0a;
    display: flex;
    align-items: center;
    color: white;
}
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 1.4s ease;
}
.hero-video.is-active { opacity: 1; }
.hero-video-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 25, 16, 0.55) 0%, rgba(0, 25, 16, 0.32) 45%, rgba(0, 25, 16, 0.05) 100%),
        linear-gradient(180deg, rgba(0, 20, 14, 0) 0%, rgba(0, 20, 14, 0.08) 60%, rgba(0, 20, 14, 0.22) 100%);
    z-index: 1;
    pointer-events: none;
}
.hero-video-bg .container { position: relative; z-index: 2; }
.hero-content-centered {
    max-width: 920px;
    margin: 0;
    text-align: left;
}
.hero-video-bg .eyebrow {
    color: rgba(255, 255, 255, 0.85);
    display: inline-flex;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    margin-bottom: 24px;
}
.hero-video-bg .eyebrow::before { display: none; }
.hero-video-bg h1 {
    color: white;
    font-size: clamp(2.5rem, 4.5vw + 1rem, 4.25rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.35);
}
.hero-video-bg h1 .accent { color: #4dd499; }
.hero-video-bg .hero-tagline {
    color: white;
    font-size: clamp(1.5rem, 1.6vw + 0.75rem, 2.125rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 20px;
    max-width: 100%;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
    text-wrap: balance;
}
@media (max-width: 640px) {
    .hero-video-bg .hero-tagline br { display: none; }
}

/* ===== Hero — real animated P&L dashboard variant ===== */
.hero-dash-bg {
    position: relative;
    padding: 100px 0 120px;
    background:
        radial-gradient(circle at 82% 24%, rgba(0, 154, 102, 0.16) 0%, rgba(0, 154, 102, 0) 46%),
        radial-gradient(circle at 12% 88%, rgba(77, 212, 153, 0.14) 0%, rgba(77, 212, 153, 0) 42%),
        linear-gradient(180deg, #f5faf7 0%, #ffffff 55%, #f0f6f2 100%);
    color: var(--ink);
    overflow: hidden;
}
.hero-dash-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 154, 102, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 154, 102, 0.045) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(ellipse at center, black 0%, black 55%, transparent 92%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, black 55%, transparent 92%);
    pointer-events: none;
    z-index: 0;
}
.hero-bg-arcs { position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.85; }
.hero-bg-arcs svg { width: 100%; height: 100%; }
.hero-dash-bg .container { position: relative; z-index: 1; }
.hero-split {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 56px;
    align-items: center;
}
.hero-dash-bg .hero-content { max-width: 560px; }
.hero-dash-bg .hero-tagline {
    color: var(--ink);
    font-size: clamp(1.5rem, 1.6vw + 0.75rem, 2.125rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0 0 20px;
    text-wrap: balance;
}
.hero-dash-bg .hero-sub {
    color: var(--muted);
    font-size: 1.0625rem;
    line-height: 1.7;
    margin: 0 0 32px;
}
.hero-dash-bg .hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-dash-bg .btn.btn-ghost.btn-on-dark {
    background: white;
    border-color: rgba(0, 85, 58, 0.18);
    color: var(--ink);
}
.hero-dash-bg .btn.btn-ghost.btn-on-dark:hover {
    background: var(--green-tint);
    border-color: var(--green);
    color: var(--green-dark);
}
.hero-dash-bg .hero-nav {
    background: white;
    border-color: rgba(0, 85, 58, 0.14);
    color: var(--green-dark);
    box-shadow: 0 8px 22px rgba(0, 85, 58, 0.08);
}
.hero-dash-bg .hero-nav:hover {
    background: var(--green);
    border-color: var(--green);
    color: white;
}
.hero-dash-bg .hero-dot {
    background: rgba(0, 85, 58, 0.16);
}
.hero-dash-bg .hero-dot:hover { background: rgba(0, 85, 58, 0.32); }
.hero-dash-bg .hero-dot.is-active { background: var(--green); }

/* Dashboard card — dark terminal on light bg */
.hero-dash {
    position: relative;
    background: linear-gradient(155deg, #0d3a2a 0%, #052117 55%, #041a13 100%);
    border: 1px solid rgba(77, 212, 153, 0.18);
    border-radius: 20px;
    padding: 22px 22px 20px;
    box-shadow:
        0 40px 80px -30px rgba(0, 40, 26, 0.45),
        0 12px 30px -12px rgba(0, 60, 40, 0.25),
        0 0 0 1px rgba(77, 212, 153, 0.10) inset;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transform: perspective(1400px) rotateY(-4deg) rotateX(2deg);
    transform-origin: center;
    color: white;
}
.dash-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: wrap;
}
.dash-title { display: flex; flex-direction: column; gap: 2px; }
.dash-title-eyebrow {
    font-size: 0.6875rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #4dd499;
    font-weight: 700;
}
.dash-title-main {
    font-size: 0.9375rem;
    font-weight: 600;
    color: rgba(255,255,255,0.92);
}
.dash-legend { display: flex; gap: 10px; flex-wrap: wrap; }
.dl-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.6875rem;
    color: rgba(255,255,255,0.72);
    background: rgba(255,255,255,0.05);
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.08);
}
.dl-chip i { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.dl-rev i { background: #4dd499; }
.dl-exp i { background: #e9b872; }
.dl-np i { background: linear-gradient(90deg, #4dd499, #7de3b3); }

.dash-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.kpi {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.kpi-accent {
    background: linear-gradient(155deg, rgba(0, 154, 102, 0.18) 0%, rgba(0, 154, 102, 0.06) 100%);
    border-color: rgba(77, 212, 153, 0.28);
}
.kpi-label {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.6);
    font-weight: 600;
}
.kpi-value {
    font-size: 1.0625rem;
    font-weight: 700;
    color: white;
    letter-spacing: -0.01em;
    font-variant-numeric: tabular-nums;
}
.kpi-value .kpi-num { font-variant-numeric: tabular-nums; }
.kpi-delta {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}
.kpi-delta.up { color: #4dd499; }
.kpi-delta.down { color: #e9b872; }

/* Line chart */
.dash-chart {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 12px 8px 8px;
    height: 220px;
}
.dash-chart svg { width: 100%; height: 100%; display: block; }
.line-rev, .line-exp {
    stroke-dasharray: 900;
    stroke-dashoffset: 900;
    animation: dashDraw 1.6s ease-out forwards 0.25s;
}
.line-exp { animation-delay: 0.55s; }
.np-area { opacity: 0; animation: dashFade 1s ease forwards 1.1s; }
.dots-rev circle, .dots-exp circle {
    opacity: 0;
    transform: scale(0);
    transform-origin: center;
    transform-box: fill-box;
    animation: dashPop 0.35s ease-out forwards;
}
.dots-rev circle:nth-child(1) { animation-delay: 0.6s; }
.dots-rev circle:nth-child(2) { animation-delay: 0.85s; }
.dots-rev circle:nth-child(3) { animation-delay: 1.1s; }
.dots-rev circle:nth-child(4) { animation-delay: 1.35s; }
.dots-exp circle:nth-child(1) { animation-delay: 0.9s; }
.dots-exp circle:nth-child(2) { animation-delay: 1.1s; }
.dots-exp circle:nth-child(3) { animation-delay: 1.3s; }
.dots-exp circle:nth-child(4) { animation-delay: 1.5s; }
@keyframes dashDraw { to { stroke-dashoffset: 0; } }
@keyframes dashFade { to { opacity: 1; } }
@keyframes dashPop { to { opacity: 1; transform: scale(1); } }

/* Lower panels */
.dash-lower {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 12px;
}
.dash-bars, .dash-donut {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 12px;
    padding: 12px 14px 14px;
}
.dbl-title {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.58);
    font-weight: 700;
    margin-bottom: 12px;
}
.bars-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    align-items: end;
    height: 100px;
}
.bar-group {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 3px;
    padding-bottom: 16px;
}
.bar {
    width: 8px;
    border-radius: 3px 3px 0 0;
    height: 0;
    transform-origin: bottom;
    animation: barGrow 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.bar-rev { background: linear-gradient(180deg, #4dd499, #009A66); }
.bar-exp { background: linear-gradient(180deg, #e9b872, #b48247); opacity: 0.85; }
.bar-group:nth-child(1) .bar { animation-delay: 0.15s; }
.bar-group:nth-child(2) .bar { animation-delay: 0.25s; }
.bar-group:nth-child(3) .bar { animation-delay: 0.35s; }
.bar-group:nth-child(4) .bar { animation-delay: 0.45s; }
.bar-group:nth-child(5) .bar { animation-delay: 0.55s; }
.bar-group:nth-child(6) .bar { animation-delay: 0.65s; }
@keyframes barGrow { to { height: var(--h); } }
.bar-label {
    position: absolute;
    bottom: 0;
    font-size: 0.625rem;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.04em;
}

/* Donut */
.donut-row { display: flex; gap: 12px; align-items: center; }
.donut-svg {
    width: 90px;
    height: 90px;
    transform: rotate(-90deg);
    flex-shrink: 0;
}
.donut-svg circle {
    opacity: 0;
    animation: donutIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.donut-svg circle:nth-child(1) { opacity: 1; animation: none; }
.donut-svg circle:nth-child(2) { animation-delay: 0.25s; }
.donut-svg circle:nth-child(3) { animation-delay: 0.4s; }
.donut-svg circle:nth-child(4) { animation-delay: 0.55s; }
.donut-svg circle:nth-child(5) { animation-delay: 0.7s; }
.donut-svg circle:nth-child(6) { animation-delay: 0.85s; }
@keyframes donutIn { to { opacity: 1; } }
.donut-legend {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 0.6875rem;
    color: rgba(255,255,255,0.82);
}
.donut-legend li {
    display: flex;
    align-items: center;
    gap: 8px;
}
.donut-legend li i {
    width: 8px;
    height: 8px;
    border-radius: 2px;
    flex-shrink: 0;
}
.donut-legend li span {
    margin-left: auto;
    color: rgba(255,255,255,0.55);
    font-variant-numeric: tabular-nums;
}

/* Btn on dark keeps working */
.hero-dash-bg .btn.btn-ghost.btn-on-dark {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.2);
}

/* ===== Hero sliding banner ===== */
.hero-slider {
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.hero-track {
    display: flex;
    width: 100%;
    transition: transform 0.9s cubic-bezier(0.65, 0, 0.35, 1);
    will-change: transform;
}
.hero-slide {
    flex: 0 0 100%;
    min-width: 0;
    opacity: 0.55;
    transition: opacity 0.6s ease 0.05s;
}
.hero-slide.is-active { opacity: 1; }
.hero-slide .container { position: relative; }
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.16);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: background 0.2s, border-color 0.2s;
}
.hero-nav:hover { background: rgba(0, 154, 102, 0.35); border-color: rgba(77, 212, 153, 0.6); }
.hero-prev { left: 20px; }
.hero-next { right: 20px; }
.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}
.hero-dot {
    width: 32px;
    height: 4px;
    border-radius: 3px;
    background: rgba(255,255,255,0.2);
    border: 0;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s, width 0.3s;
}
.hero-dot:hover { background: rgba(255,255,255,0.35); }
.hero-dot.is-active { background: #4dd499; width: 44px; }
@media (max-width: 720px) {
    .hero-nav { width: 36px; height: 36px; }
    .hero-prev { left: 8px; }
    .hero-next { right: 8px; }
    .hero-dots { bottom: 14px; }
}

/* ===== Audit-readiness checklist (slide 2) ===== */
.pl-unit.pl-unit-green {
    color: #4dd499;
    border-color: rgba(77, 212, 153, 0.4);
    background: rgba(77, 212, 153, 0.1);
}
.ar-list {
    list-style: none;
    padding: 0;
    margin: 0;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    overflow: hidden;
    font-size: 0.8125rem;
}
.ar-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.9);
}
.ar-list li:last-child { border-bottom: 0; }
.ar-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-weight: 800;
    font-size: 0.75rem;
    flex-shrink: 0;
}
.ar-list li.ok .ar-check { background: rgba(77, 212, 153, 0.18); color: #4dd499; }
.ar-list li.warn .ar-check { background: rgba(233, 184, 114, 0.22); color: #e9b872; }
.ar-item { flex: 1; }
.ar-tag {
    font-size: 0.6875rem;
    color: #4dd499;
    font-weight: 700;
    letter-spacing: 0.02em;
    background: rgba(77, 212, 153, 0.12);
    padding: 3px 10px;
    border-radius: 999px;
}
.ar-tag.ar-tag-warn {
    color: #e9b872;
    background: rgba(233, 184, 114, 0.14);
}

/* ===== Branches list (slide 3) ===== */
.branch-list {
    list-style: none;
    padding: 0;
    margin: 0;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    overflow: hidden;
    font-size: 0.8125rem;
}
.branch-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.branch-list li:last-child { border-bottom: 0; }
.br-city {
    color: white;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}
.br-flag {
    font-size: 0.625rem;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.55);
    background: rgba(255,255,255,0.06);
    padding: 2px 7px;
    border-radius: 4px;
    font-weight: 700;
}
.br-meta {
    display: flex;
    gap: 12px;
    color: rgba(255,255,255,0.72);
    font-variant-numeric: tabular-nums;
}
.br-meta .up { color: #4dd499; font-weight: 700; }

.pl-strip-item strong .of {
    font-size: 0.6875rem;
    color: rgba(255,255,255,0.5);
    font-weight: 600;
    margin-left: 2px;
}

/* ===== Interactive numbers ===== */
.num {
    font-variant-numeric: tabular-nums;
    display: inline-block;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}
.num.is-animating {
    color: #4dd499 !important;
    text-shadow: 0 0 12px rgba(77, 212, 153, 0.5);
}
.pl-mini tr { cursor: pointer; transition: background 0.2s ease; }
.pl-mini tr:hover:not(.total):not(.sub) td { background: rgba(77, 212, 153, 0.06); }
.pl-mini tr.total:hover td { filter: brightness(1.08); }
.gg-tile { cursor: pointer; }

/* ===== Growth screens grid (slide 2) ===== */
.growth-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 14px;
    max-width: 480px;
    margin-left: auto;
}
.gg-tile {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 14px;
    padding: 12px 14px 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: transform 0.35s ease, border-color 0.35s ease;
}
.gg-tile:hover {
    transform: translateY(-3px);
    border-color: rgba(77, 212, 153, 0.35);
}
.gg-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}
.gg-label {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.6);
    font-weight: 700;
}
.gg-delta {
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    padding: 2px 8px;
    border-radius: 999px;
}
.gg-delta.up {
    color: #4dd499;
    background: rgba(77, 212, 153, 0.12);
}
.gg-val {
    font-size: 1.375rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
    line-height: 1.05;
}
.gg-val .gg-unit {
    font-size: 0.6875rem;
    color: rgba(255,255,255,0.55);
    font-weight: 600;
    margin-left: 4px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.gg-chart {
    width: 100%;
    height: 46px;
    margin-top: 2px;
}
@media (max-width: 560px) {
    .growth-grid { grid-template-columns: 1fr; padding: 12px; }
    .gg-val { font-size: 1.125rem; }
}

/* ===== Dubai + KSA city split (slide 3) ===== */
.city-split {
    padding: 14px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 520px;
    margin-left: auto;
}
.city-card {
    position: relative;
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    aspect-ratio: 16 / 7;
    background: #000;
}
.city-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 6s ease;
}
.city-card:hover img { transform: scale(1.05); }
.city-card figcaption {
    position: absolute;
    left: 16px;
    bottom: 12px;
    right: 16px;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.65);
    z-index: 1;
}
.city-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,20,14,0.72) 100%);
    pointer-events: none;
}
.city-name {
    font-size: 1.375rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
    position: relative;
    z-index: 1;
}
.city-country {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
    z-index: 1;
}
@media (max-width: 560px) {
    .city-name { font-size: 1.125rem; }
}

/* ===== Compact P&L snapshot card ===== */
.pl-compact { padding: 18px 20px 16px; gap: 12px; max-width: 480px; margin-left: auto; }
.pl-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}
.pl-eyebrow {
    font-size: 0.625rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #4dd499;
    font-weight: 700;
}
.pl-firm {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.72);
    margin-top: 2px;
    font-weight: 500;
}
.pl-unit {
    font-size: 0.625rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    font-weight: 700;
    padding: 3px 8px;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 999px;
    background: rgba(255,255,255,0.03);
    white-space: nowrap;
}
.pl-mini {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8125rem;
    font-variant-numeric: tabular-nums;
    color: rgba(255,255,255,0.9);
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    overflow: hidden;
}
.pl-mini td {
    padding: 7px 14px;
    text-align: right;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.pl-mini td:first-child {
    text-align: left;
    color: rgba(255,255,255,0.72);
}
.pl-mini tr:last-child td { border-bottom: 0; }
.pl-mini tr.neg td:nth-child(2) { color: rgba(255,255,255,0.55); }
.pl-mini tr.sub td {
    background: rgba(255,255,255,0.04);
    border-top: 1px solid rgba(255,255,255,0.10);
    font-weight: 700;
    color: white !important;
    padding-top: 8px;
    padding-bottom: 8px;
}
.pl-mini tr.sub.gp td { color: #4dd499 !important; }
.pl-mini tr.total td {
    background: linear-gradient(155deg, rgba(0, 154, 102, 0.32) 0%, rgba(0, 154, 102, 0.12) 100%);
    border-top: 2px solid rgba(77, 212, 153, 0.55);
    font-weight: 800;
    color: white !important;
    font-size: 0.9375rem;
    padding-top: 10px;
    padding-bottom: 10px;
}
.pl-mini td.up { color: #4dd499; font-weight: 700; }
.pl-mini td.down { color: #ff9b7a; font-weight: 700; }
.pl-mini td.neutral { color: rgba(255,255,255,0.55); font-weight: 600; }

.pl-strip {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 6px 4px 0;
    justify-content: space-between;
}
.pl-strip-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}
.pl-strip-item span {
    font-size: 0.625rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    font-weight: 700;
}
.pl-strip-item strong {
    font-size: 1.125rem;
    color: white;
    font-weight: 800;
    letter-spacing: -0.01em;
    font-variant-numeric: tabular-nums;
}
.pl-strip-sep {
    width: 1px;
    height: 28px;
    background: rgba(255,255,255,0.12);
}
.pl-strip-spark { align-items: flex-end; }
.pl-strip-spark svg { width: 90px; height: 22px; }
.pl-strip-spark span { color: rgba(255,255,255,0.55); }
.pl-spark-line {
    stroke-dasharray: 250;
    stroke-dashoffset: 250;
    animation: dashDraw 1.8s ease-out forwards 0.3s;
}
@media (max-width: 640px) {
    .pl-compact { padding: 14px 14px 12px; }
    .pl-mini { font-size: 0.75rem; }
    .pl-mini td { padding: 5px 10px; }
    .pl-strip-item strong { font-size: 1rem; }
}

@media (max-width: 960px) {
    .hero-split { grid-template-columns: 1fr; gap: 40px; }
    .hero-dash { transform: none; max-width: 640px; margin: 0 auto; }
}
@media (max-width: 560px) {
    .dash-lower { grid-template-columns: 1fr; }
    .dash-kpis { grid-template-columns: 1fr; }
    .dash-legend { display: none; }
}
.hero-video-bg .hero-subtagline {
    color: #7de3b3;
    font-size: clamp(1.375rem, 1.6vw + 0.5rem, 2rem);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin: 0 0 32px;
    max-width: 800px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}
.hero-video-bg .hero-sub {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.0625rem;
    line-height: 1.7;
    max-width: 620px;
    margin: 0 0 36px;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}
.hero-video-bg .hero-cta {
    justify-content: flex-start;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.btn.btn-ghost.btn-on-dark {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.28);
    color: white;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.btn.btn-ghost.btn-on-dark:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

@media (max-width: 720px) {
    .hero-video-bg { min-height: 68vh; padding: 100px 0 100px; }
}

.hero-arcs {
    position: absolute;
    top: -240px;
    right: -320px;
    width: 760px;
    height: 760px;
    pointer-events: none;
    opacity: 0.5;
    z-index: 0;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-content { max-width: 580px; }
.hero h1 { margin-bottom: 20px; line-height: 1.1; }
.hero h1 .accent {
    color: var(--green);
    position: relative;
    white-space: nowrap;
}

.hero-tagline {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--green-deep);
    letter-spacing: -0.01em;
    margin: 8px 0 6px;
    line-height: 1.3;
}
.hero-subtagline {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--ink);
    margin: 0 0 20px;
    line-height: 1.4;
    letter-spacing: -0.005em;
}
.hero-sub {
    font-size: 1rem;
    color: var(--ink-soft);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}
.hero-meta-label {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--muted);
    margin-right: 4px;
}
.hero-meta-item {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--ink-soft);
}
.hero-meta-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--green);
    opacity: 0.6;
}

/* Dashboard card visual */
.hero-visual { position: relative; }
.dash-wrap { position: relative; }

/* ----------- Hero skyline image (right-side visual) ----------- */
.hero-skyline {
    position: relative;
    width: 100%;
    aspect-ratio: 5 / 6;
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 1px 2px rgba(20, 36, 28, 0.05),
        0 30px 60px -22px rgba(20, 36, 28, 0.28),
        0 20px 44px -22px rgba(0, 85, 58, 0.30);
    background: var(--green-tint);
}
.hero-skyline img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.02);
    transition: transform 0.8s var(--ease);
}
.hero-skyline:hover img { transform: scale(1.06); }
.hero-skyline::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(0, 85, 58, 0) 0%,
        rgba(0, 85, 58, 0) 45%,
        rgba(0, 42, 28, 0.55) 100%);
    pointer-events: none;
}
.hero-skyline-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    z-index: 2;
}
.hero-skyline-caption .dash-pill {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--ink);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 8px 14px;
    border-color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.02em;
}
.hero-skyline-caption .dash-pill .pip {
    background: var(--green);
    box-shadow: 0 0 0 3px rgba(0, 154, 102, 0.25);
    animation: pulse-simple 2s ease-in-out infinite;
}
@media (max-width: 960px) {
    .hero-skyline { aspect-ratio: 16 / 10; }
}

.dash-card {
    position: relative;
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 24px;
    box-shadow:
        0 1px 2px rgba(20, 36, 28, 0.04),
        0 30px 60px -22px rgba(20, 36, 28, 0.16),
        0 18px 40px -22px rgba(0, 154, 102, 0.22);
    transform: translateZ(0);
}

.dash-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}
.dash-label {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--muted);
}
.dash-tag {
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--green-deep);
    padding: 3px 10px;
    background: var(--green-tint);
    border-radius: 999px;
    letter-spacing: 0.02em;
}
.dash-title {
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--ink);
    margin: 6px 0 2px;
    letter-spacing: -0.01em;
}
.dash-sub {
    font-size: 0.8125rem;
    color: var(--muted);
    margin-bottom: 18px;
}

.dash-chart-wrap {
    position: relative;
    background: linear-gradient(180deg, var(--bg-soft) 0%, white 100%);
    border-radius: 12px;
    padding: 14px 12px 0;
    margin-bottom: 14px;
}
.dash-chart {
    width: 100%;
    height: 130px;
    display: block;
}
.dash-bottomline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 4px 6px;
    border-top: 2px solid var(--green);
    margin-top: -2px;
}
.dash-bottomline .label {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--green);
}
.dash-bottomline .value {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--ink);
}

.dash-pills {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.dash-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    font-size: 0.75rem;
    color: var(--ink-soft);
    font-weight: 500;
}
.dash-pill .pip {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--green);
}

/* Floating credibility badges */
.dash-badge {
    position: absolute;
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 10px 14px;
    box-shadow: 0 10px 30px -10px rgba(20, 36, 28, 0.18), 0 2px 6px rgba(20, 36, 28, 0.05);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
}
.dash-badge .icon {
    width: 26px; height: 26px;
    border-radius: 7px;
    background: var(--green-tint);
    color: var(--green);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.dash-badge-tl { top: -18px; left: -22px; }
.dash-badge-br { bottom: -18px; right: -18px; }

/* Clients strip */
.clients-strip {
    padding: 28px 0;
    background: white;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.clients-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px 36px;
    flex-wrap: wrap;
}
.clients-label {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--muted);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.clients-label::after {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--border);
}
.clients-list {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}
.client-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--ink-soft);
    letter-spacing: -0.01em;
    opacity: 0.65;
    transition: opacity 0.2s var(--ease), color 0.2s var(--ease);
    font-family: 'Cairo', sans-serif;
}
.client-name:hover { opacity: 1; color: var(--ink); }
.client-name.more {
    font-weight: 500;
    color: var(--green);
    opacity: 0.9;
}

/* ----------- Page hero (sub-pages) ----------- */
.page-hero {
    position: relative;
    padding: 80px 0 64px;
    background: linear-gradient(180deg, var(--green-pale) 0%, white 100%);
    overflow: hidden;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2rem, 3vw + 1rem, 3rem); }
.page-hero p { font-size: 1.125rem; margin-top: 20px; max-width: 60ch; }
.page-hero-arcs {
    position: absolute;
    top: -100px;
    right: -150px;
    width: 600px;
    height: 600px;
    opacity: 0.6;
    pointer-events: none;
}

/* ----------- Cards / Services ----------- */
.grid {
    display: grid;
    gap: 24px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
    padding: 32px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.25s var(--ease);
    position: relative;
    overflow: hidden;
}
.card:hover {
    border-color: var(--green);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--green-tint);
    color: var(--green);
    margin-bottom: 20px;
    transition: all 0.25s var(--ease);
}
.card:hover .card-icon {
    background: var(--green);
    color: white;
    transform: scale(1.05);
}

.card h3 { margin-bottom: 12px; font-size: 1.1875rem; }
.card p { font-size: 0.9375rem; color: var(--muted); line-height: 1.6; }

/* Service detail card (alt) */
.service-card {
    padding: 40px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.25s var(--ease);
    display: flex;
    gap: 32px;
    align-items: flex-start;
}
.service-card:hover {
    border-color: var(--green);
    box-shadow: var(--shadow-lg);
}
.service-card .card-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    margin-bottom: 0;
}
.service-card-body { flex: 1; }
.service-card-body h3 { font-size: 1.25rem; margin-bottom: 10px; }
.service-card-body p { font-size: 1rem; }

/* ----------- Sister-company clickable card ----------- */
.sister-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    max-width: 720px;
    margin: 16px auto 0;
    padding: 28px 36px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 18px;
    text-decoration: none;
    transition: all 0.25s var(--ease);
    box-shadow: 0 1px 2px rgba(20, 36, 28, 0.03);
}
.sister-card:hover {
    border-color: #4d1d95;
    transform: translateY(-3px);
    box-shadow: 0 18px 36px -16px rgba(77, 29, 149, 0.28), 0 4px 12px rgba(20, 36, 28, 0.06);
}
.sister-card-logo {
    height: 64px;
    width: auto;
    display: block;
}
.sister-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: #4d1d95;
    color: white;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9375rem;
    white-space: nowrap;
    transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.sister-card:hover .sister-card-cta { background: #3a1571; }
.sister-card-cta svg { transition: transform 0.2s var(--ease); }
.sister-card:hover .sister-card-cta svg { transform: translate(2px, -2px); }

@media (max-width: 640px) {
    .sister-card { flex-direction: column; gap: 20px; padding: 24px; }
    .sister-card-logo { height: 56px; }
}

/* ----------- Team grid ----------- */
.team-tier { margin-top: 40px; }
.team-tier:first-of-type { margin-top: 0; }
.team-tier-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 20px;
    padding: 6px 14px;
    background: var(--green-tint);
    border-radius: 999px;
    border: 1px solid rgba(0, 154, 102, 0.18);
}
.team-tier-label::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.team-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    transition: all 0.25s var(--ease);
}
.team-card:hover {
    border-color: var(--green);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.team-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: linear-gradient(135deg, var(--green-tint) 0%, var(--green-pale) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-deep);
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    position: relative;
    overflow: hidden;
}
.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.team-body { padding: 20px 16px 24px; }
.team-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}
.team-title {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.team-branch {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--muted);
    margin-top: 8px;
    padding: 3px 10px;
    background: var(--green-tint);
    color: var(--green-deep);
    border-radius: 999px;
    display: inline-block;
    letter-spacing: 0.02em;
}
.team-bio {
    font-size: 0.875rem;
    color: var(--muted);
    margin-top: 10px;
    line-height: 1.5;
}

@media (max-width: 960px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .team-grid { grid-template-columns: 1fr; } }

/* ----------- Our Process — five-step journey ----------- */
.process-section .section-head p { max-width: 640px; margin: 12px auto 0; }
.process-flow {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-top: 56px;
    padding-top: 8px;
}
.process-flow::before {
    content: '';
    position: absolute;
    top: 40px;
    left: calc(10% + 24px);
    right: calc(10% + 24px);
    height: 2px;
    background-image: linear-gradient(90deg, rgba(0, 154, 102, 0.5) 50%, transparent 50%);
    background-size: 12px 2px;
    z-index: 0;
}
.process-step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 8px;
}
.process-num {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--green);
    color: var(--green);
    font-weight: 800;
    font-size: 1.125rem;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 22px rgba(0, 154, 102, 0.15);
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease, color 0.35s ease;
}
.process-step:hover .process-num {
    background: var(--green);
    color: white;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 14px 30px rgba(0, 154, 102, 0.28);
}
.process-step h3 {
    margin: 0 0 10px;
    font-size: 1.125rem;
    color: var(--ink);
    letter-spacing: -0.01em;
}
.process-step p {
    color: var(--muted);
    font-size: 0.9375rem;
    line-height: 1.55;
    margin: 0;
}
@media (max-width: 960px) {
    .process-flow { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
    .process-flow::before { display: none; }
}
@media (max-width: 560px) {
    .process-flow { grid-template-columns: 1fr; gap: 32px; }
}

/* ----------- Why Choose Bottom Line ----------- */
.why-choose {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, var(--green-tint) 100%);
}
.why-arcs {
    position: absolute;
    top: -180px;
    right: -220px;
    width: 640px;
    height: 640px;
    pointer-events: none;
    z-index: 0;
}
.why-arcs svg { width: 100%; height: 100%; }
.why-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 64px;
    align-items: center;
}
.why-intro h2 {
    margin: 12px 0 20px;
    font-size: clamp(1.75rem, 1.4vw + 1.1rem, 2.375rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
}
.why-intro .lead {
    font-size: 1.125rem;
    color: var(--ink);
    margin: 0 0 16px;
}
.why-intro p:not(.lead) {
    color: var(--muted);
    line-height: 1.7;
    margin: 0;
}
.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 24px;
}
.why-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 6px 18px rgba(0, 85, 58, 0.04);
    font-weight: 600;
    color: var(--ink);
    font-size: 0.9375rem;
    line-height: 1.35;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.why-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(0, 85, 58, 0.09);
    border-color: rgba(0, 154, 102, 0.35);
}
.why-check {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--green);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 154, 102, 0.28);
}

@media (max-width: 960px) {
    .why-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 560px) {
    .why-list { grid-template-columns: 1fr; }
}

/* ----------- Image + features split layout ----------- */
.image-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.image-side {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: var(--shadow-lg);
    background: var(--bg-soft);
}
.image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease);
}
.image-side:hover img { transform: scale(1.03); }

/* Floating green accent badge on image */
.image-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 8px 24px -8px rgba(20, 36, 28, 0.25);
}
.image-badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--green);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.image-badge-text { line-height: 1.3; }
.image-badge-text strong {
    display: block;
    color: var(--ink);
    font-size: 0.9375rem;
    font-weight: 700;
}
.image-badge-text span {
    font-size: 0.8125rem;
    color: var(--muted);
}

.features-stacked {
    display: grid;
    gap: 16px;
}
.features-stacked .feature {
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.features-stacked .feature .feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    background: var(--green-tint);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.features-stacked .feature .feature-body { flex: 1; }
.features-stacked .feature h4 { color: var(--ink); margin-bottom: 4px; }

@media (max-width: 960px) {
    .image-split { grid-template-columns: 1fr; gap: 40px; }
    .image-side { aspect-ratio: 16 / 10; max-height: 420px; }
}

/* ----------- Feature row (about page) ----------- */
.feature-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 56px;
}
.feature {
    padding: 28px;
    background: var(--bg-soft);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}
.feature h4 { margin-bottom: 8px; color: var(--green); }
.feature p { font-size: 0.9375rem; color: var(--muted); }

/* ----------- Branches ----------- */
.branches {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.branch {
    padding: 28px 24px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.2s var(--ease);
}
.branch:hover {
    border-color: var(--green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.branch .pin {
    width: 40px;
    height: 40px;
    margin: 0 auto 12px;
    color: var(--green);
}
.branch-city {
    font-weight: 600;
    font-size: 1.0625rem;
    color: var(--ink);
    margin-bottom: 4px;
}
.branch-country {
    font-size: 0.8125rem;
    color: var(--muted);
}

/* ----------- Two-column split ----------- */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.split-content h2 { margin-bottom: 20px; }
.split-content p { margin-bottom: 16px; font-size: 1.0625rem; }

.split-visual {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Target market */
.targets {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.target {
    padding: 36px 28px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.2s var(--ease);
}
.target:hover { border-color: var(--green); transform: translateY(-2px); }
.target-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--green-tint);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
}
.target h4 { font-size: 1.0625rem; }

/* ----------- CTA banner ----------- */
.cta-banner {
    position: relative;
    padding: 72px;
    background:
        linear-gradient(135deg, rgba(0, 154, 102, 0.88) 0%, rgba(0, 85, 58, 0.94) 100%),
        url('https://images.unsplash.com/photo-1604940500627-d3f44d1d21c6?w=1600&q=75&auto=format&fit=crop') center / cover no-repeat;
    border-radius: var(--radius-lg);
    color: white;
    overflow: hidden;
    text-align: center;
}
.cta-banner::before,
.cta-banner::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.cta-banner::before {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at center, rgba(255,255,255,0.12) 0%, transparent 70%);
    top: -200px;
    right: -100px;
}
.cta-banner::after {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at center, rgba(255,255,255,0.08) 0%, transparent 70%);
    bottom: -150px;
    left: -50px;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 {
    color: white;
    margin-bottom: 16px;
    font-size: clamp(1.5rem, 2vw + 0.5rem, 2.25rem);
}
.cta-banner p {
    color: rgba(255,255,255,0.85);
    max-width: 48ch;
    margin: 0 auto 32px;
    font-size: 1.0625rem;
}
.cta-banner .btn-primary {
    background: white;
    color: var(--green-deep);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.cta-banner .btn-primary:hover {
    background: var(--green-pale);
    transform: translateY(-1px);
}

/* ----------- Sister company ----------- */
.sister-hero {
    padding: 80px 0;
    background: linear-gradient(180deg, #f0f6fc 0%, white 100%);
}
.sister-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(36, 99, 161, 0.1);
    color: #2463a1;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.sister-capabilities {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 48px;
}
.capability {
    padding: 20px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.2s var(--ease);
}
.capability:hover {
    border-color: #2463a1;
    transform: translateY(-2px);
}
.capability .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2463a1;
    flex-shrink: 0;
}

/* ----------- Contact ----------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}
.contact-info-block { margin-bottom: 32px; }
.contact-info-block h4 {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--green);
    margin-bottom: 12px;
}
.contact-info-block p,
.contact-info-block a {
    font-size: 1rem;
    color: var(--ink-soft);
    line-height: 1.7;
}
.contact-info-block a:hover { color: var(--green); }

.offices-list {
    display: grid;
    gap: 16px;
}
.office {
    padding: 20px 24px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: all 0.2s var(--ease);
}
.office:hover {
    border-color: var(--green);
}
.office .pin {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--green-tint);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
}
.office-city {
    font-weight: 600;
    font-size: 1rem;
    color: var(--ink);
    margin-bottom: 2px;
}
.office-address {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.5;
}

/* Form */
.form-card {
    padding: 40px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.field { display: flex; flex-direction: column; margin-bottom: 16px; }
.field label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--ink-soft);
    margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.9375rem;
    color: var(--ink);
    background: white;
    transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(0, 154, 102, 0.15);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-card button[type="submit"] { width: 100%; justify-content: center; margin-top: 8px; }

.form-success {
    display: none;
    padding: 16px;
    background: var(--green-tint);
    border-radius: var(--radius-sm);
    color: var(--green-deep);
    font-size: 0.9375rem;
    margin-top: 16px;
}
.form-success.show { display: block; }

/* ----------- Footer ----------- */
.site-footer {
    background: #0e1a14;
    color: rgba(255,255,255,0.7);
    padding: 64px 0 32px;
}
.site-footer a { color: rgba(255,255,255,0.7); }
.site-footer a:hover { color: var(--green); }

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand {
    display: flex;
    align-items: baseline;
    gap: 4px;
    color: rgba(255,255,255,0.95);
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 16px;
}
.footer-brand .brand-line { color: var(--green); }
.footer-about p { color: rgba(255,255,255,0.6); font-size: 0.9375rem; line-height: 1.6; max-width: 32ch; }

.footer-heading {
    color: white;
    font-size: 0.875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 16px;
}
.footer-list { list-style: none; }
.footer-list li { margin-bottom: 10px; font-size: 0.9375rem; }
.footer-contact p,
.footer-contact a { font-size: 0.9375rem; line-height: 1.7; }

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.45);
}

/* ----------- Reveal on scroll ----------- */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ----------- Animated mesh gradient (hero ambience) ----------- */
.mesh-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}
.mesh-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    will-change: transform;
    opacity: 0.55;
    transform: translateZ(0);
}
.mesh-blob-1 {
    width: 520px; height: 520px;
    background: radial-gradient(circle, rgba(0, 154, 102, 0.55) 0%, rgba(0, 154, 102, 0) 70%);
    top: -140px; left: -100px;
    animation: mesh-drift-1 22s ease-in-out infinite;
}
.mesh-blob-2 {
    width: 620px; height: 620px;
    background: radial-gradient(circle, rgba(0, 85, 58, 0.42) 0%, rgba(0, 85, 58, 0) 70%);
    top: 15%; right: -180px;
    animation: mesh-drift-2 26s ease-in-out infinite;
}
.mesh-blob-3 {
    width: 460px; height: 460px;
    background: radial-gradient(circle, rgba(102, 194, 161, 0.45) 0%, rgba(102, 194, 161, 0) 70%);
    bottom: -160px; left: 25%;
    animation: mesh-drift-3 28s ease-in-out infinite;
}
.mesh-blob-4 {
    width: 380px; height: 380px;
    background: radial-gradient(circle, rgba(0, 122, 81, 0.35) 0%, rgba(0, 122, 81, 0) 70%);
    top: 55%; left: 8%;
    animation: mesh-drift-4 24s ease-in-out infinite;
}
@keyframes mesh-drift-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%      { transform: translate(80px, 60px) scale(1.08); }
    66%      { transform: translate(-40px, 100px) scale(0.94); }
}
@keyframes mesh-drift-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%      { transform: translate(-70px, 90px) scale(1.05); }
    66%      { transform: translate(60px, 40px) scale(0.9); }
}
@keyframes mesh-drift-3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(60px, -80px) scale(1.1); }
}
@keyframes mesh-drift-4 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(120px, -40px) scale(1.06); }
}
@media (prefers-reduced-motion: reduce) {
    .mesh-blob { animation: none; }
}

/* ----------- 3D tilt / magnetic transitions ----------- */
.tilt-card {
    transform-style: preserve-3d;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform;
}
.magnetic {
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform;
}
.dash-card { transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1); will-change: transform; }

/* ----------- Dot grid background ----------- */
.dot-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0, 154, 102, 0.12) 1px, transparent 1.5px);
    background-size: 22px 22px;
    background-position: center;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    pointer-events: none;
    z-index: 0;
}

/* ----------- Animated chart line ----------- */
.chart-line {
    /* stroke-dasharray and stroke-dashoffset set inline by JS based on path length */
    transition: stroke-dashoffset 1.6s cubic-bezier(0.65, 0, 0.35, 1) 0.3s;
}
.chart-dot {
    opacity: 0;
    transform-origin: center;
    transform-box: fill-box;
}
.chart-dot.draw {
    animation: popDot 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.chart-dot.draw:nth-of-type(1) { animation-delay: 1.0s; }
.chart-dot.draw:nth-of-type(2) { animation-delay: 1.25s; }
.chart-dot.draw:nth-of-type(3) { animation-delay: 1.5s; }
.chart-dot.draw:nth-of-type(4) { animation-delay: 1.75s; }
.chart-area { opacity: 0; }
.chart-area.draw { animation: fadeIn 0.8s ease forwards 0.6s; }

@keyframes popDot {
    0% { opacity: 0; transform: scale(0); }
    60% { opacity: 1; transform: scale(1.3); }
    100% { opacity: 1; transform: scale(1); }
}
@keyframes fadeIn {
    to { opacity: 1; }
}

/* Hero counter chip */
.hero-counter-chip {
    position: absolute;
    top: 38%;
    left: -28px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: 0 12px 32px -10px rgba(20, 36, 28, 0.20), 0 2px 6px rgba(20, 36, 28, 0.05);
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 130px;
}
.hero-counter-chip .num {
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--green);
    letter-spacing: -0.02em;
    line-height: 1;
}
.hero-counter-chip .lbl {
    font-size: 0.6875rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
}

/* ----------- Clients logo grid ----------- */
.clients-section {
    padding: 72px 0;
    background: white;
    position: relative;
}
.clients-section .section-head { margin-left: auto; margin-right: auto; }

.clients-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 12px;
}
.client-tile {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    aspect-ratio: 5 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 16px;
    transition: all 0.25s var(--ease);
    overflow: hidden;
}
.client-tile:hover {
    border-color: var(--green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.client-tile img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.25s var(--ease), opacity 0.25s var(--ease);
}
.client-tile:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* Full-color variant — used on the dedicated clients page */
.clients-grid.clients-full-color .client-tile img {
    filter: none;
    opacity: 1;
}
.clients-grid.clients-full-color .client-tile:hover img {
    transform: scale(1.04);
}
.clients-grid.clients-full-color .client-tile img { transition: transform 0.25s var(--ease); }

.clients-cta {
    text-align: center;
    margin-top: 40px;
}

@media (max-width: 1100px) { .clients-grid { grid-template-columns: repeat(6, 1fr); } }
@media (max-width: 720px)  { .clients-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; } }
@media (max-width: 420px)  { .clients-grid { grid-template-columns: repeat(2, 1fr); } }

/* ----------- Marquee clients strip ----------- */
.marquee-strip {
    padding: 32px 0;
    background: white;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    position: relative;
}
.marquee-strip::before,
.marquee-strip::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}
.marquee-strip::before { left: 0; background: linear-gradient(90deg, white, transparent); }
.marquee-strip::after { right: 0; background: linear-gradient(-90deg, white, transparent); }

.marquee-head {
    text-align: center;
    margin-bottom: 22px;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--muted);
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 48s linear infinite;
    gap: 56px;
}
.marquee-strip:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--ink-soft);
    letter-spacing: -0.01em;
    opacity: 0.55;
    white-space: nowrap;
    transition: opacity 0.2s var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 56px;
}
.marquee-item:hover { opacity: 1; color: var(--ink); }
.marquee-item::after {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--green);
    opacity: 0.4;
}
.marquee-item:last-child::after { display: none; }

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - 28px)); }
}

/* ----------- Stats authority ----------- */
.stats-section {
    position: relative;
    padding: 48px 0;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
    color: white;
    overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.10) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(255,255,255,0.07) 0%, transparent 45%);
    pointer-events: none;
}
.stats-section .dot-grid {
    background-image: radial-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1.5px);
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.stats-section .stat .stat-num,
.stats-section .stat .stat-num .suffix,
.stats-section .stat .stat-num span { color: #ffffff !important; }
.stats-section .stat .stat-num-text {
    font-size: clamp(1.5rem, 2.2vw + 0.6rem, 2.25rem);
    letter-spacing: -0.02em;
    line-height: 1.1;
}
.stats-section .stat .stat-label { color: #ffffff !important; font-weight: 700; }
.stats-section .stat .stat-sub { color: rgba(255, 255, 255, 0.78) !important; }
.stats-section .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
}
.stats-section .stat .stat-num {
    min-height: 5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 6px;
}
.stats-section .stat .stat-label {
    min-height: 1.8em;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    text-align: center;
    font-size: 1.0625rem;
    letter-spacing: 0.005em;
    margin-top: 4px;
}
.stats-section .stat .stat-sub {
    text-align: center;
    font-size: 0.9375rem;
    line-height: 1.5;
    margin-top: 8px;
}
@media (max-width: 720px) {
    .stats-section .stat .stat-num { min-height: 0; }
    .stats-section .stat .stat-label { min-height: 0; }
}
.stats-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.stat {
    text-align: center;
    padding: 8px 0;
}
.stat .stat-num {
    font-size: clamp(2.5rem, 3.5vw + 1rem, 3.75rem);
    font-weight: 700;
    color: var(--green);
    letter-spacing: -0.04em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    display: inline-flex;
    align-items: baseline;
}
.stat .stat-num .suffix {
    font-size: 0.5em;
    color: var(--green);
    margin-left: 2px;
    font-weight: 600;
}
.stat .stat-label {
    margin-top: 10px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--ink-soft);
    letter-spacing: 0.01em;
}
.stat .stat-sub {
    margin-top: 4px;
    font-size: 0.75rem;
    color: var(--muted);
}

/* ----------- Bento services grid ----------- */
.bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(180px, auto);
    gap: 16px;
}
.bento-tile {
    position: relative;
    grid-column: span 1;
    padding: 28px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 18px;
    transition: all 0.3s var(--ease);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 200px;
}
.bento-tile:hover {
    border-color: var(--green);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.bento-tile h3 {
    font-size: 1.0625rem;
    letter-spacing: -0.01em;
}
.bento-tile p {
    font-size: 0.875rem;
    color: var(--muted);
    line-height: 1.55;
}

.bento-tile.featured {
    grid-column: span 2;
    grid-row: span 2;
    background:
        linear-gradient(135deg, rgba(0, 154, 102, 0.92) 0%, rgba(0, 85, 58, 0.96) 100%),
        url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=900&q=75&auto=format&fit=crop') center / cover no-repeat;
    color: white;
    border: none;
    padding: 36px;
    gap: 16px;
}
.bento-tile.featured h3 {
    font-size: 1.75rem;
    color: white;
    line-height: 1.15;
}
.bento-tile.featured p {
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    line-height: 1.6;
}
.bento-tile.featured .card-icon {
    background: rgba(255,255,255,0.15);
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 14px;
}
.bento-tile.featured::before {
    content: '';
    position: absolute;
    right: -120px;
    bottom: -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.18) 0%, transparent 70%);
    pointer-events: none;
}
.bento-tile.featured .bento-cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: white;
    font-weight: 500;
    font-size: 0.9375rem;
    align-self: flex-start;
    transition: gap 0.2s var(--ease);
}
.bento-tile.featured .bento-cta:hover { gap: 10px; }

.bento-tile.tall { grid-row: span 2; }
.bento-tile.wide { grid-column: span 3; }

.bento-meta {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--green);
}
.bento-meta::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
}

/* ----------- Industries strip ----------- */
.industries {
    padding: 56px 0;
    background: white;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.industries-head {
    text-align: center;
    margin-bottom: 28px;
}
.industries-head h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 6px;
}
.industries-head p {
    font-size: 0.875rem;
    color: var(--muted);
}

/* New icon-card grid (replaces .industries-row) */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}
.industry-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 28px 16px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    text-align: center;
    transition: all 0.25s var(--ease);
}
.industry-card:hover {
    border-color: var(--green);
    background: var(--green-pale);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.industry-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--green-tint);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s var(--ease);
}
.industry-card:hover .industry-icon {
    background: var(--green);
    color: white;
    transform: scale(1.06);
}
.industry-card span {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.005em;
}

@media (max-width: 1100px) { .industries-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 720px)  { .industries-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; } .industry-card { padding: 20px 10px; gap: 10px; } .industry-icon { width: 44px; height: 44px; border-radius: 11px; } }
@media (max-width: 420px)  { .industries-grid { grid-template-columns: repeat(2, 1fr); } }

/* ----------- Interactive Region Map ----------- */
.map-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(180deg, white 0%, var(--green-pale) 100%);
    overflow: hidden;
}
.map-wrap {
    position: relative;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 56px;
    align-items: center;
}
.map-canvas {
    position: relative;
    aspect-ratio: 1 / 0.85;
    background: white;
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.map-canvas svg.region {
    width: 100%;
    height: 100%;
    display: block;
}
.region-land { fill: #f0f4f1; stroke: #d8e3dc; stroke-width: 1; transition: fill 0.2s var(--ease); }
.region-water { fill: #ecf5ef; }

.map-pin {
    cursor: pointer;
    transition: transform 0.2s var(--ease);
    transform-origin: center;
    transform-box: fill-box;
}
.map-pin .pin-ring {
    fill: none;
    stroke: var(--green);
    stroke-width: 2;
    opacity: 0;
    transform-origin: center;
    transform-box: fill-box;
}
.map-pin.active .pin-ring,
.map-pin:hover .pin-ring {
    opacity: 1;
    animation: pulse 1.6s ease-out infinite;
}
.map-pin .pin-dot {
    fill: var(--green);
    transition: fill 0.2s var(--ease);
}
.map-pin .pin-dot-inner {
    fill: white;
}
.map-pin:hover { transform: scale(1.15); }
.map-pin.active .pin-dot { fill: var(--green-deep); }

.map-label {
    fill: var(--ink);
    font-size: 12px;
    font-weight: 600;
    font-family: 'Cairo', sans-serif;
    pointer-events: none;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.9; }
    100% { transform: scale(2.4); opacity: 0; }
}

.map-side h2 { margin-bottom: 12px; }
.map-side .lead { margin-bottom: 28px; }

.map-offices {
    display: grid;
    gap: 10px;
}
.map-office {
    padding: 14px 18px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s var(--ease);
    display: flex;
    align-items: center;
    gap: 14px;
}
.map-office:hover,
.map-office.active {
    border-color: var(--green);
    background: var(--green-pale);
    transform: translateX(4px);
}
.map-office .num {
    width: 28px; height: 28px;
    border-radius: 8px;
    background: var(--green-tint);
    color: var(--green);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 0.8125rem;
    flex-shrink: 0;
    transition: all 0.2s var(--ease);
}
.map-office:hover .num,
.map-office.active .num {
    background: var(--green);
    color: white;
}
.map-office-name {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--ink);
}
.map-office-addr {
    font-size: 0.8125rem;
    color: var(--muted);
    margin-top: 2px;
}

/* ----------- Testimonial (dark contrast section) ----------- */
.testimonial-section {
    padding: 96px 0;
    background: linear-gradient(135deg, var(--green-deep) 0%, #003824 100%);
    color: white;
    position: relative;
    overflow: hidden;
}
.testimonial-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(255,255,255,0.08) 0%, transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(0, 154, 102, 0.35) 0%, transparent 55%);
    pointer-events: none;
}
.testimonial-section .section-head { position: relative; z-index: 1; }
.testimonial-section .eyebrow { color: rgba(255,255,255,0.85); }
.testimonial-section .eyebrow::before { background: rgba(255,255,255,0.7); }
.testimonial-section h2 { color: white; }
.testimonial-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1080px;
    margin: 0 auto;
}
@media (max-width: 800px) {
    .testimonial-grid { grid-template-columns: 1fr; }
}
.testimonial {
    position: relative;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 24px;
    padding: 44px 40px 36px;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 28px;
}
.testimonial::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 32px;
    font-size: 14rem;
    font-family: Georgia, serif;
    color: white;
    opacity: 0.10;
    line-height: 1;
    font-weight: 700;
}
.testimonial-quote {
    font-size: 1.5rem;
    line-height: 1.5;
    color: white;
    font-weight: 500;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
}
.testimonial-author {
    margin-top: 28px;
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    z-index: 1;
}
.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}
.testimonial-author-name {
    font-weight: 700;
    color: white;
    font-size: 0.9375rem;
}
.testimonial-author-title {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.68);
}

/* ----------- Precise Middle East Map ----------- */
.precise-map-section {
    padding: 72px 0 96px;
    background: white;
    position: relative;
    overflow: hidden;
}
.precise-map-section .section-head { margin-left: auto; margin-right: auto; }

.precise-map-wrap {
    display: grid;
    grid-template-columns: 1.45fr 1fr;
    gap: 48px;
    align-items: start;
}

.precise-map-canvas {
    position: relative;
    background: #d6ecf5;
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    line-height: 0;
}
svg.political-map {
    width: 100%;
    height: auto;
    display: block;
}

/* Political map — atlas styling */
.pm-water { fill: #d6ecf5; }

.pm-country {
    fill: #f3a878;
    stroke: #ffffff;
    stroke-width: 1.8;
    stroke-linejoin: round;
    transition: fill 0.2s var(--ease);
}
.pm-country.pm-branch { cursor: pointer; }
.pm-country.pm-branch:hover,
.pm-country.pm-branch.active {
    fill: var(--green);
}

/* Country labels (inside country) */
.pm-label {
    font-family: 'Cairo', sans-serif;
    font-size: 26px;
    font-weight: 700;
    fill: #1a1a1a;
    letter-spacing: 0.02em;
    pointer-events: none;
    paint-order: stroke;
    stroke: rgba(255, 255, 255, 0.4);
    stroke-width: 1;
    stroke-linejoin: round;
}

/* Small country labels (with leader lines) */
.pm-label-small {
    font-family: 'Cairo', sans-serif;
    font-size: 20px;
    font-weight: 700;
    fill: #1a1a1a;
    letter-spacing: 0.02em;
    pointer-events: none;
}
.pm-leader {
    stroke: #1a1a1a;
    stroke-width: 1.2;
    fill: none;
}

/* Sea labels (italic, blue) */
.pm-sea {
    font-family: 'Cairo', sans-serif;
    font-size: 26px;
    font-style: italic;
    font-weight: 500;
    fill: #2e6f9a;
    letter-spacing: 0.06em;
    pointer-events: none;
}
.pm-sea-small {
    font-size: 18px;
    font-weight: 500;
    font-style: italic;
    fill: #2e6f9a;
    letter-spacing: 0.04em;
}

/* Continent labels */
.pm-continent {
    font-family: 'Cairo', sans-serif;
    font-size: 32px;
    font-weight: 700;
    fill: #1a1a1a;
    letter-spacing: 0.08em;
    pointer-events: none;
}

/* Branch city pins */
.pm-pin {
    cursor: pointer;
    transform-origin: center;
    transform-box: fill-box;
    transition: transform 0.2s var(--ease);
}
.pm-pin-ring {
    fill: none;
    stroke: var(--green-deep);
    stroke-width: 3;
    opacity: 0;
    transform-origin: center;
    transform-box: fill-box;
}
.pm-pin.active .pm-pin-ring,
.pm-pin:hover .pm-pin-ring {
    opacity: 0.9;
    animation: pulse 1.6s ease-out infinite;
}
.pm-pin-dot {
    fill: white;
    stroke: var(--green-deep);
    stroke-width: 3.5;
    filter: drop-shadow(0 1px 4px rgba(0, 85, 58, 0.55));
}
.pm-pin-inner { fill: var(--green-deep); }
.pm-pin:hover { transform: scale(1.18); }
.pm-pin:focus { outline: none; }
.pm-pin:focus .pm-pin-ring { opacity: 0.9; }

/* City name labels (only labels left on the map) */
.pm-city-label {
    font-family: 'Cairo', sans-serif;
    font-size: 32px;
    font-weight: 700;
    fill: var(--ink);
    letter-spacing: 0.01em;
    pointer-events: none;
    paint-order: stroke;
    stroke: white;
    stroke-width: 6;
    stroke-linejoin: round;
    dominant-baseline: middle;
}

/* Image-based interactive map */
.img-map-container {
    position: relative;
    width: 100%;
    line-height: 0;
    border-radius: 20px;
    overflow: hidden;
}
.img-map {
    width: 100%;
    height: auto;
    display: block;
}
.img-map-pin {
    position: absolute;
    width: 110px;
    height: 110px;
    margin-left: -55px;
    margin-top: -78px; /* pin tip is at the bottom of the icon, so hit zone sits above the coord */
    background: transparent;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    padding: 0;
    transition: transform 0.2s var(--ease);
    z-index: 2;
}

/* Soft constant glow that sits behind every pin so they always look "lit" */
.img-map-pin::after {
    content: '';
    position: absolute;
    inset: 20px;
    border-radius: 50%;
    background: radial-gradient(circle,
        rgba(255, 255, 255, 0.55) 0%,
        rgba(120, 255, 170, 0.45) 25%,
        rgba(0, 154, 102, 0.30) 50%,
        transparent 75%);
    pointer-events: none;
    opacity: 0.55;
    filter: blur(2px);
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), filter 0.25s var(--ease);
    z-index: -1;
}

/* Strong glow layer that activates on hover/focus */
.img-map-pin::before {
    content: '';
    position: absolute;
    inset: 10px;
    border-radius: 50%;
    background: radial-gradient(circle,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(180, 255, 215, 0.75) 18%,
        rgba(0, 154, 102, 0.55) 45%,
        rgba(0, 154, 102, 0.20) 70%,
        transparent 85%);
    opacity: 0;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
    pointer-events: none;
    transform: scale(0.7);
    filter: blur(1px);
    z-index: -1;
}

.img-map-pin:hover::before,
.img-map-pin:focus::before,
.img-map-pin.active::before {
    opacity: 1;
    transform: scale(1.55);
    animation: imgPinPulse 1.6s ease-out infinite;
}
.img-map-pin:hover::after,
.img-map-pin:focus::after,
.img-map-pin.active::after {
    opacity: 1;
    transform: scale(1.25);
    filter: blur(3px);
}

.img-map-pin:focus { outline: none; }
.img-map-pin:hover,
.img-map-pin.active { transform: translateY(-2px); }

@keyframes imgPinPulse {
    0%   { transform: scale(1.55); opacity: 1; }
    60%  { transform: scale(2.1);  opacity: 0.45; }
    100% { transform: scale(2.6);  opacity: 0; }
}

@media (max-width: 720px) {
    .img-map-pin { width: 80px; height: 80px; margin-left: -40px; margin-top: -56px; }
}

/* Leaflet integration */
.leaflet-container { font-family: 'Cairo', -apple-system, BlinkMacSystemFont, sans-serif !important; }
.leaflet-control-attribution {
    font-size: 0.6875rem !important;
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(6px);
}
.leaflet-control-attribution a { color: var(--green-deep) !important; }
.leaflet-control-zoom a {
    border: 1px solid var(--border) !important;
    color: var(--ink) !important;
    font-weight: 500;
}
.leaflet-control-zoom a:hover {
    background: var(--green-pale) !important;
    color: var(--green-deep) !important;
}

/* Branded pin */
.bl-pin { background: transparent; border: none; }
.bl-pin-outer {
    display: block;
    width: 24px;
    height: 24px;
    background: var(--green);
    border-radius: 50%;
    position: relative;
    box-shadow:
        0 0 0 4px rgba(0, 154, 102, 0.25),
        0 2px 6px rgba(0, 85, 58, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(4px, 4px);
    transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.bl-pin-inner {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    display: block;
}
.bl-pin:hover .bl-pin-outer {
    transform: translate(4px, 4px) scale(1.15);
    box-shadow:
        0 0 0 6px rgba(0, 154, 102, 0.30),
        0 4px 10px rgba(0, 85, 58, 0.5);
}

/* Pulse ring */
.bl-pin-outer::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--green);
    opacity: 0;
    animation: blPinPulse 2.4s ease-out infinite;
}
@keyframes blPinPulse {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(2.4); opacity: 0; }
}

/* Popup styling */
.leaflet-popup-content-wrapper {
    border-radius: 14px !important;
    box-shadow: 0 12px 32px -8px rgba(20, 36, 28, 0.22), 0 4px 12px rgba(20, 36, 28, 0.08) !important;
    padding: 4px !important;
    border: 1px solid var(--border) !important;
}
.leaflet-popup-content {
    margin: 14px 16px !important;
    font-family: 'Cairo', sans-serif !important;
    color: var(--ink) !important;
    line-height: 1.5;
}
.leaflet-popup-tip { background: white !important; box-shadow: 0 6px 12px rgba(20, 36, 28, 0.08) !important; }
.bl-popup-head {
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: -0.01em;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2px;
}
.bl-popup-tag {
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--green-deep);
    background: var(--green-tint);
    padding: 2px 8px;
    border-radius: 6px;
    letter-spacing: 0.04em;
}
.bl-popup-country {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
}
.bl-popup-addr {
    font-size: 0.8125rem;
    color: var(--muted);
}

/* Reset view button overlay */
.map-reset-btn {
    position: absolute;
    bottom: 16px;
    right: 16px;
    padding: 8px 14px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--ink);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    transition: all 0.2s var(--ease);
    z-index: 401;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.map-reset-btn:hover {
    border-color: var(--green);
    color: var(--green-deep);
}

.mm-water { fill: #ecf5ef; }

.mm-country {
    fill: #d6e2db;
    stroke: #b8cdc1;
    stroke-width: 0.8;
    transition: fill 0.2s var(--ease), stroke 0.2s var(--ease);
}
.mm-country.mm-highlighted {
    fill: #c8e7d4;
    stroke: #80c098;
    stroke-width: 1;
    cursor: pointer;
}
.mm-country.mm-highlighted:hover,
.mm-country.mm-highlighted.active {
    fill: var(--green);
    stroke: var(--green-deep);
}

.mm-pin {
    cursor: pointer;
    transition: transform 0.2s var(--ease);
    transform-origin: center;
    transform-box: fill-box;
}
.mm-pin-ring {
    fill: none;
    stroke: var(--green-deep);
    stroke-width: 3;
    opacity: 0;
    transform-origin: center;
    transform-box: fill-box;
}
.mm-pin.active .mm-pin-ring,
.mm-pin:hover .mm-pin-ring {
    opacity: 0.9;
    animation: pulse 1.6s ease-out infinite;
}
.mm-pin-dot {
    fill: white;
    stroke: var(--green-deep);
    stroke-width: 3.5;
    filter: drop-shadow(0 1px 3px rgba(0, 85, 58, 0.5));
}
.mm-pin-dot-inner { fill: var(--green-deep); }
.mm-pin:hover { transform: scale(1.2); }

.mm-label {
    font-size: 22px;
    font-weight: 700;
    fill: var(--ink);
    font-family: 'Cairo', sans-serif;
    pointer-events: none;
    paint-order: stroke;
    stroke: white;
    stroke-width: 5;
    stroke-linejoin: round;
}

/* Map legend */
.map-legend {
    position: absolute;
    top: 18px;
    left: 18px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--ink-soft);
    box-shadow: var(--shadow-sm);
    z-index: 2;
}
.legend-item { display: flex; align-items: center; gap: 8px; font-weight: 500; }
.legend-swatch { width: 16px; height: 10px; border-radius: 3px; flex-shrink: 0; }
.legend-swatch.active { background: var(--green); }
.legend-swatch.context { background: #d6e2db; border: 1px solid #b8cdc1; }
.legend-pin {
    width: 10px; height: 10px;
    background: white;
    border: 2px solid var(--green-deep);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Country cards */
.country-cards {
    display: grid;
    gap: 12px;
}
.country-card {
    padding: 20px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.25s var(--ease);
}
.country-card:hover,
.country-card.active {
    border-color: var(--green);
    background: var(--green-pale);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.country-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.country-name {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 1.0625rem;
    color: var(--ink);
    letter-spacing: -0.01em;
}
.country-flag {
    font-size: 1.5rem;
    line-height: 1;
}
.country-branch-count {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    background: var(--green-tint);
    color: var(--green-deep);
    border-radius: 999px;
    white-space: nowrap;
}
.country-card.active .country-branch-count {
    background: var(--green);
    color: white;
}

.country-branches {
    display: grid;
    gap: 10px;
}
.country-branch {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 10px 0 0;
    border-top: 1px solid var(--border);
    transition: padding 0.2s var(--ease);
}
.country-branch:first-child { border-top: none; padding-top: 0; }
.country-branch .branch-num {
    width: 24px; height: 24px;
    border-radius: 7px;
    background: var(--green-tint);
    color: var(--green-deep);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    flex-shrink: 0;
    transition: all 0.2s var(--ease);
}
.country-branch:hover .branch-num {
    background: var(--green);
    color: white;
}
.country-branch-name {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--ink);
    line-height: 1.3;
}
.country-branch-name .tag {
    font-size: 0.625rem;
    color: var(--green-deep);
    font-weight: 700;
    margin-left: 6px;
    padding: 2px 6px;
    background: var(--green-tint);
    border-radius: 4px;
    letter-spacing: 0.04em;
    vertical-align: middle;
}
.country-branch-addr {
    font-size: 0.8125rem;
    color: var(--muted);
    margin-top: 2px;
    line-height: 1.45;
}

@media (max-width: 960px) {
    .precise-map-wrap { grid-template-columns: 1fr; gap: 32px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
    .marquee-track { animation: none; }
    .chart-line, .chart-dot, .chart-area { animation: none; opacity: 1; stroke-dashoffset: 0; }
    .map-pin.active .pin-ring, .map-pin:hover .pin-ring,
    .mm-pin.active .mm-pin-ring, .mm-pin:hover .mm-pin-ring { animation: none; }
    .reveal { opacity: 1; transform: none; transition: none; }
}

/* ----------- Responsive ----------- */
@media (max-width: 960px) {
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .branches { grid-template-columns: repeat(2, 1fr); }
    .targets { grid-template-columns: 1fr; }
    .feature-list { grid-template-columns: 1fr; }
    .sister-capabilities { grid-template-columns: repeat(2, 1fr); }
    .split, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .split-visual { aspect-ratio: 16 / 9; }
    .hero-grid { grid-template-columns: 1fr; gap: 56px; }
    .hero-content { max-width: none; }
    .dash-badge-tl { left: 8px; top: -16px; }
    .dash-badge-br { right: 8px; bottom: -16px; }
    .hero-counter-chip { left: 8px; top: -18px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
    .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: auto; }
    .bento-tile, .bento-tile.featured, .bento-tile.tall, .bento-tile.wide { grid-column: span 1; grid-row: span 1; min-height: 180px; }
    .bento-tile.featured { grid-column: span 2; }
    .map-wrap { grid-template-columns: 1fr; gap: 32px; }
    .testimonial { padding: 40px 32px; }
    .testimonial-quote { font-size: 1.125rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 720px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .bento { grid-template-columns: 1fr; }
    .bento-tile, .bento-tile.featured { grid-column: span 1; }
    .marquee-track { gap: 40px; }
    .marquee-item { font-size: 1rem; gap: 40px; }
    .marquee-item::after { width: 4px; height: 4px; }
    .testimonial { padding: 36px 24px; }
    .testimonial::before { font-size: 10rem; left: 16px; }
    .industries-row { gap: 8px; }
    .industry-chip { padding: 8px 14px; font-size: 0.8125rem; }
}

@media (max-width: 720px) {
    .section { padding: 64px 0; }
    .hero { padding: 64px 0 80px; }
    .grid-3, .grid-2 { grid-template-columns: 1fr; }
    .sister-capabilities { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .cta-banner { padding: 48px 28px; }
    .service-card { flex-direction: column; gap: 20px; padding: 28px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

    .nav-toggle { display: flex; }
    .nav-links {
        position: fixed;
        top: 92px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 16px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-md);
        transform: translateY(-10px);
        opacity: 0;
        pointer-events: none;
        transition: all 0.2s var(--ease);
    }
    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    .nav-links a { padding: 12px 16px; }
    .nav-cta { margin: 8px 0 0 0; text-align: center; }
}


/* ----------- Hero dashboard stats grid (real numbers) ----------- */
.dash-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 16px 0 14px;
}
.dash-stat {
    background: linear-gradient(180deg, var(--green-tint) 0%, var(--green-pale) 100%);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 16px;
    text-align: left;
}
.dash-stat-num {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--green-deep);
    line-height: 1;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
}
.dash-stat-lbl {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 6px;
}


/* ----------- Hero dashboard: 6 practice areas grid ----------- */
.dash-practice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 16px 0 14px;
}
.dash-practice {
    background: linear-gradient(180deg, var(--green-tint) 0%, var(--green-pale) 100%);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
}
.dash-practice .dp-icon {
    width: 26px; height: 26px;
    border-radius: 7px;
    background: white;
    color: var(--green-deep);
    display: flex;
    align-items: center;
    justify-content: center;
}
.dash-practice span:last-child {
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--green-deep);
    line-height: 1.2;
    letter-spacing: 0.01em;
}


/* ----------- Hero slide 2: KSA business landscape card ----------- */
.ksa-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.01em;
    margin: 6px 0 4px;
}
.ksa-sub {
    font-size: 0.8125rem;
    color: var(--muted);
    line-height: 1.5;
    margin-bottom: 18px;
}
.ksa-sectors {
    display: grid;
    gap: 10px;
    margin-bottom: 4px;
}
.ksa-sector {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    background: linear-gradient(180deg, var(--green-tint) 0%, var(--green-pale) 100%);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.ksa-sector:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}
.ksa-sector-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: white;
    color: var(--green-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ksa-sector-body { flex: 1; min-width: 0; }
.ksa-sector-name {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.005em;
    line-height: 1.2;
}
.ksa-sector-note {
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 3px;
    font-weight: 500;
}


/* ----------- Hero dashboard: text-based (non-numeric) stat ----------- */
.dash-stat .dash-stat-text {
    font-size: 1.125rem;
    line-height: 1.05;
    letter-spacing: -0.01em;
}

/* ----------- Clients page: preserve the company-profile row structure ----------- */
.clients-grid.clients-rows {
    display: block;
}
.clients-rows .client-row {
    display: grid;
    grid-template-columns: repeat(var(--n), minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 12px;
}
.clients-rows .client-row[data-row]        { --n: 8; }
.clients-rows .client-row:nth-child(1)     { --n: 10; }
.clients-rows .client-row:nth-child(7)     { --n: 11; }
.clients-rows .client-row:nth-child(9)     { --n: 9; }
.clients-rows .client-row:nth-child(10)    { --n: 7; }
.clients-rows .client-row:nth-child(11),
.clients-rows .client-row:nth-child(12),
.clients-rows .client-row:nth-child(13)    { --n: 9; }
.clients-rows .client-tile { aspect-ratio: 5 / 3; }

@media (max-width: 1100px) {
    .clients-rows .client-row { grid-template-columns: repeat(6, minmax(0,1fr)) !important; }
}
@media (max-width: 720px) {
    .clients-rows .client-row { grid-template-columns: repeat(3, minmax(0,1fr)) !important; gap: 10px; }
}
@media (max-width: 420px) {
    .clients-rows .client-row { grid-template-columns: repeat(2, minmax(0,1fr)) !important; }
}
