/* ==========================================================================
   Ebda Al Maajim Trading & Contracting — Public site stylesheet
   Hand-authored design system. No build step required.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
    /* Brand greens */
    --c-green-950: #06281C;
    --c-green-900: #0A3527;
    --c-green-850: #0B3B2C;
    --c-green-800: #0F4A36;
    --c-green-700: #145C42;
    --c-green-600: #17754F;
    --c-green-500: #1B8A5C;
    --c-accent: #1A7A4E;

    /* Brand golds */
    --c-gold-700: #A9781F;
    --c-gold-600: #C08F2C;
    --c-gold: #D8A44A;
    --c-gold-400: #E3B968;
    --c-gold-200: #F2DFB4;

    /* Neutrals */
    --c-ink: #10211A;
    --c-body: #3F4A45;
    --c-muted: #6E7B75;
    --c-line: #E4E9E6;
    --c-line-soft: #EFF2F0;
    --c-surface: #FFFFFF;
    --c-surface-alt: #F5F8F6;
    --c-surface-alt2: #F0F4F1;

    /* On-dark */
    --c-on-dark: #FFFFFF;
    --c-on-dark-soft: rgba(255, 255, 255, .76);
    --c-on-dark-mute: rgba(255, 255, 255, .58);
    --c-on-dark-line: rgba(255, 255, 255, .14);

    /* Type */
    --font-sans: 'Plus Jakarta Sans', 'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
    --font-script: 'Dancing Script', 'Segoe Script', cursive;

    /* Metrics */
    --container: 1200px;
    --radius-sm: 4px;
    --radius: 8px;
    --radius-lg: 14px;
    --radius-pill: 999px;

    --shadow-sm: 0 1px 2px rgba(16, 33, 26, .06);
    --shadow: 0 4px 18px rgba(16, 33, 26, .07);
    --shadow-lg: 0 18px 48px rgba(16, 33, 26, .14);

    --header-h: 74px;
    --topbar-h: 40px;
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 110px; }

body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 15px;
    line-height: 1.65;
    color: var(--c-body);
    background: var(--c-surface);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 .6em;
    color: var(--c-ink);
    font-weight: 800;
    line-height: 1.22;
    letter-spacing: -.015em;
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--c-accent); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--c-green-700); }

ul, ol { margin: 0 0 1em; padding-left: 1.15rem; }
ul:last-child, ol:last-child { margin-bottom: 0; }

hr { border: 0; border-top: 1px solid var(--c-line); margin: 2rem 0; }

:focus-visible { outline: 2px solid var(--c-gold); outline-offset: 2px; border-radius: 2px; }

.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.skip-link {
    position: absolute; left: 12px; top: -60px; z-index: 999;
    background: var(--c-gold); color: var(--c-green-950);
    padding: 10px 18px; border-radius: var(--radius); font-weight: 700;
    transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 22px;
}
.container-wide { max-width: 1340px; }

.section { padding: 62px 0; position: relative; }
.section-sm { padding: 44px 0; }
.section-lg { padding: 84px 0; }
.section-alt { background: var(--c-surface-alt); }
.section-tight-top { padding-top: 34px; }
.section-tight-bottom { padding-bottom: 34px; }

.stack > * + * { margin-top: var(--stack-gap, 1rem); }

/* Section heading block ---------------------------------------------------- */
.section-head { margin-bottom: 34px; }
.section-head.is-center { text-align: center; max-width: 760px; margin-inline: auto; }

.eyebrow {
    display: block;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .17em;
    text-transform: uppercase;
    color: var(--c-muted);
    margin-bottom: 10px;
}
.eyebrow-gold { color: var(--c-gold); }
.eyebrow-light { color: var(--c-on-dark-mute); }

.section-title {
    font-size: clamp(24px, 3.1vw, 33px);
    font-weight: 800;
    color: var(--c-ink);
    margin: 0;
    letter-spacing: -.02em;
}
.section-title .accent { color: var(--c-accent); }
.section-title-light { color: #fff; }
.section-title-light .accent { color: var(--c-gold); }

.section-lead {
    margin-top: 12px;
    font-size: 15px;
    color: var(--c-muted);
}

.title-rule {
    width: 54px; height: 3px; border-radius: 3px;
    background: var(--c-gold);
    margin: 14px 0 0;
}
.is-center .title-rule { margin-inline: auto; }

/* --------------------------------------------------------------------------
   4. Buttons
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 11px 22px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: .005em;
    cursor: pointer;
    text-align: center;
    transition: background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 15px; height: 15px; flex: none; }

.btn-gold { background: var(--c-gold); color: var(--c-green-950); border-color: var(--c-gold); }
.btn-gold:hover { background: var(--c-gold-400); border-color: var(--c-gold-400); color: var(--c-green-950); box-shadow: 0 8px 20px rgba(216, 164, 74, .34); }

.btn-green { background: var(--c-green-850); color: #fff; border-color: var(--c-green-850); }
.btn-green:hover { background: var(--c-green-700); border-color: var(--c-green-700); color: #fff; }

.btn-outline-light { background: rgba(255, 255, 255, .07); color: #fff; border-color: rgba(255, 255, 255, .45); }
.btn-outline-light:hover { background: rgba(255, 255, 255, .16); border-color: #fff; color: #fff; }

.btn-outline { background: transparent; color: var(--c-green-850); border-color: var(--c-line); }
.btn-outline:hover { border-color: var(--c-green-850); background: var(--c-green-850); color: #fff; }

.btn-lg { padding: 14px 28px; font-size: 14.5px; }
.btn-sm { padding: 8px 15px; font-size: 12.5px; }
.btn-block { display: flex; width: 100%; }

/* Text link with arrow */
.link-more {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 12.5px; font-weight: 700; color: var(--c-accent);
}
.link-more svg { width: 13px; height: 13px; transition: transform .18s ease; }
.link-more:hover svg { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   5. Top bar + header
   -------------------------------------------------------------------------- */
.topbar {
    background: var(--c-green-950);
    color: var(--c-on-dark-soft);
    font-size: 12.5px;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
}
.topbar-inner {
    min-height: var(--topbar-h);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 26px;
    flex-wrap: wrap;
}
.topbar-item { display: inline-flex; align-items: center; gap: 7px; color: var(--c-on-dark-soft); }
.topbar-item svg { width: 13px; height: 13px; color: var(--c-gold); flex: none; }
a.topbar-item:hover { color: #fff; }
.topbar-lang { color: var(--c-gold); font-weight: 600; }
.topbar-lang:hover { color: var(--c-gold-400); }

/* Staff sign-in chip — present but visually secondary to the contact details. */
.topbar-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border: 1px solid rgba(216, 164, 74, .45);
    border-radius: var(--radius-pill);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .01em;
    color: var(--c-gold);
    white-space: nowrap;
    transition: background-color .18s ease, border-color .18s ease, color .18s ease;
}
.topbar-btn svg { width: 12px; height: 12px; flex: none; }
.topbar-btn:hover {
    background: var(--c-gold);
    border-color: var(--c-gold);
    color: var(--c-green-950);
}

.site-header {
    background: var(--c-green-850);
    position: relative;
    z-index: 60;
}
/* Sticky + z-index makes the header its own stacking context, which traps the
   mobile menu inside it. The header therefore has to sit ABOVE the backdrop,
   or the backdrop covers the menu and swallows every tap. */
.site-header.is-sticky {
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 6px 24px rgba(6, 40, 28, .28);
}
.header-inner {
    min-height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

/* Brand ------------------------------------------------------------------- */
.brand { display: inline-flex; align-items: center; gap: 11px; color: #fff; }
.brand:hover { color: #fff; }
.brand-mark { width: 42px; height: 46px; flex: none; }
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.12; }
.brand-name { font-size: 18px; font-weight: 800; letter-spacing: -.01em; color: #fff; }
.brand-tag { font-size: 11.5px; font-weight: 500; color: var(--c-on-dark-soft); letter-spacing: .01em; }
.brand-ar { font-size: 9.5px; color: var(--c-on-dark-mute); direction: rtl; margin-top: 1px; }

/* Full lockup: the artwork carries the name, so it simply sits on its own. */
.brand-lockup { display: inline-flex; align-items: center; }
.brand-lockup img {
    height: 44px;
    width: auto;
    max-width: 290px;
    object-fit: contain;
    object-position: left center;
}
.site-footer .brand-lockup img { height: 50px; max-width: 300px; }

@media (max-width: 992px) {
    .brand-lockup img { height: 38px; max-width: 230px; }
}
@media (max-width: 560px) {
    .brand-lockup img { height: 32px; max-width: 190px; }
}

/* Navigation -------------------------------------------------------------- */
.main-nav { display: flex; align-items: center; gap: 4px; margin-inline-start: auto; }
.nav-list { list-style: none; margin: 0; padding: 0; display: flex; align-items: center; gap: 2px; }

/* The dropdown is positioned against its own menu item. Without this the
   nearest positioned ancestor is the header, and the panel opens at the far
   left of the page instead of under the link. */
.nav-item { position: relative; }

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 25px 13px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--c-on-dark-soft);
    position: relative;
    white-space: nowrap;
}
.nav-link:hover { color: #fff; }
.nav-link .caret { width: 9px; height: 9px; opacity: .75; transition: transform .2s ease; }
.nav-item:hover .caret { transform: rotate(180deg); }

.nav-link::after {
    content: '';
    position: absolute;
    left: 13px; right: 13px; bottom: 18px;
    height: 2px;
    background: var(--c-gold);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .22s ease;
}
.nav-link.is-active { color: #fff; }
.nav-link.is-active::after, .nav-item:hover > .nav-link::after { transform: scaleX(1); }

/* Dropdown */
.nav-item.has-children > .nav-link { padding-right: 11px; }
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 258px;
    background: #fff;
    border-radius: var(--radius);
    border: 1px solid var(--c-line);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    margin: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s;
    z-index: 70;
}
.nav-item:hover > .dropdown,
.nav-item:focus-within > .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

/* Menu items near the right edge open their panel right-aligned so it can
   never run off the side of the window. */
.nav-item:nth-last-child(-n+2) > .dropdown { left: auto; right: 0; }

.dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    color: var(--c-ink);
    line-height: 1.35;
}
.dropdown a:hover { background: var(--c-surface-alt); color: var(--c-accent); }
.dropdown a svg { width: 16px; height: 16px; color: var(--c-gold-600); flex: none; }

.header-cta { margin-inline-start: 8px; }
.nav-mobile-cta { display: none; }

/* Mobile toggle */
.nav-toggle {
    display: none;
    width: 42px; height: 42px;
    align-items: center; justify-content: center;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--radius-sm);
    color: #fff;
    cursor: pointer;
}
.nav-toggle svg { width: 20px; height: 20px; }

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    background: var(--c-green-900);
    color: #fff;
    overflow: hidden;
    isolation: isolate;
}
/* Every slide occupies the same grid cell, so they crossfade cleanly and the
   hero still takes its height from the tallest slide. */
.hero { display: grid; }
.hero-slide {
    grid-area: 1 / 1;
    opacity: 0;
    visibility: hidden;
    transition: opacity .75s ease, visibility .75s;
}
.hero-slide.is-active { opacity: 1; visibility: visible; }

.hero-dots {
    position: absolute;
    left: 50%; bottom: 104px;
    transform: translateX(-50%);
    display: flex; gap: 8px; z-index: 3;
}
.hero-dot {
    width: 28px; height: 4px; padding: 0;
    border: 0; border-radius: 3px; cursor: pointer;
    background: rgba(255, 255, 255, .34);
    transition: background-color .2s ease, width .2s ease;
}
.hero-dot.is-active { background: var(--c-gold); width: 40px; }

.hero-media { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.hero-media img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center 42%;
    /* Slow drift keeps the banner alive without distracting from the copy. */
    animation: heroDrift 24s ease-out forwards;
}
@keyframes heroDrift {
    from { transform: scale(1.08); }
    to { transform: scale(1); }
}

.hero-overlay {
    position: absolute; inset: 0; z-index: -1;
    background:
        linear-gradient(100deg, rgba(5, 34, 24, .95) 0%, rgba(7, 43, 30, .89) 36%, rgba(9, 50, 35, .62) 62%, rgba(9, 50, 35, .40) 100%),
        linear-gradient(to top, rgba(5, 34, 24, .55) 0%, rgba(5, 34, 24, 0) 42%);
}

.hero-inner {
    padding-top: 74px;
    padding-bottom: 150px;
    max-width: 660px;
}

.hero-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--c-gold);
    margin-bottom: 14px;
}

.hero-title {
    font-size: clamp(32px, 5vw, 54px);
    line-height: 1.1;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.028em;
    margin: 0 0 18px;
}
.hero-title .amp, .hero-title .accent { color: var(--c-gold); }

.hero-rule { width: 62px; height: 3px; background: var(--c-gold); border-radius: 3px; margin-bottom: 18px; }

.hero-text {
    font-size: 14.5px;
    color: rgba(255, 255, 255, .8);
    max-width: 545px;
    margin-bottom: 28px;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* --------------------------------------------------------------------------
   Banner mode — the artwork already contains the heading, body copy, icons and
   logo, so it is shown whole with nothing painted over it.
   -------------------------------------------------------------------------- */
.hero.is-banner { background: var(--c-green-950); }
.hero-slide.is-banner-slide { line-height: 0; }

.hero-banner { display: block; width: 100%; }
.hero-banner img {
    width: 100%;
    height: auto;
    display: block;
}
a.hero-banner { cursor: pointer; }

/* The dots sit inside the artwork rather than below it. */
.hero.is-banner .hero-dots { bottom: 18px; }

@media (max-width: 760px) {
    /* At phone width the full 2.7:1 banner would render its body copy a few
       pixels tall. Unless a mobile-specific image is supplied, anchor to the
       left so the headline and paragraph stay whole and readable; the height
       is chosen to keep the sector icon row in view too. */
    .hero.is-banner .hero-banner img {
        height: 310px;
        object-fit: cover;
        object-position: left center;
    }

    /* A supplied mobile banner is already the right shape — show it in full. */
    .hero.is-banner .hero-banner picture source ~ img {
        height: auto;
        object-fit: fill;
    }
}

@media (max-width: 460px) {
    .hero.is-banner .hero-banner img { height: 260px; }
    .hero.is-banner .hero-banner picture source ~ img { height: auto; }
}

/* Curved bottom edge */
.hero-curve {
    position: absolute;
    left: 0; right: 0; bottom: -1px;
    width: 100%;
    height: 92px;
    z-index: 1;
    pointer-events: none;
}
.hero-curve svg { width: 100%; height: 100%; display: block; }
.hero-curve path { fill: var(--c-surface); }

/* --------------------------------------------------------------------------
   7. Stats strip (overlaps hero)
   -------------------------------------------------------------------------- */
.stats-wrap { position: relative; z-index: 5; margin-top: -96px; }
/* Below a finished banner the strip must not overlap and clip the artwork. */
.stats-wrap.is-flush { margin-top: 34px; }

.stats-strip {
    background: var(--c-green-850);
    border-radius: var(--radius);
    box-shadow: 0 22px 50px rgba(6, 40, 28, .3);
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    overflow: hidden;
}
.stat {
    padding: 24px 18px 22px;
    text-align: center;
    border-inline-start: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
}
.stat:first-child { border-inline-start: 0; }

.stat-icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(216, 164, 74, .5);
    display: grid; place-items: center;
    color: var(--c-gold);
    margin-bottom: 8px;
}
.stat-icon svg { width: 21px; height: 21px; }

.stat-value {
    font-size: 25px;
    font-weight: 800;
    color: var(--c-gold);
    line-height: 1.1;
    letter-spacing: -.02em;
}
.stat-label {
    font-size: 11.5px;
    line-height: 1.4;
    color: var(--c-on-dark-soft);
    font-weight: 500;
    max-width: 160px;
}
.stat.no-value .stat-label { font-size: 12px; color: #fff; font-weight: 600; }

/* --------------------------------------------------------------------------
   8. Sector cards (6-up grid)
   -------------------------------------------------------------------------- */
.sector-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.sector-card {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius);
    padding: 24px 16px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
/* Gold rule that draws in from the left on hover. */
.sector-card::before {
    content: '';
    position: absolute; inset: 0 0 auto 0;
    height: 3px;
    background: linear-gradient(90deg, var(--c-gold), var(--c-gold-400));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .28s ease;
}
.sector-card:hover::before { transform: scaleX(1); }
.sector-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: rgba(26, 122, 78, .35);
}
.sector-card:hover .sector-card-icon { color: var(--c-green-600); transform: translateY(-2px); }
.sector-card-icon { transition: color .22s ease, transform .22s ease; }
.sector-card-icon {
    width: 46px; height: 46px;
    display: grid; place-items: center;
    color: var(--c-green-850);
    margin-bottom: 14px;
}
.sector-card-icon svg { width: 38px; height: 38px; stroke-width: 1.4; }
.sector-card-title {
    font-size: 13.5px;
    font-weight: 800;
    color: var(--c-ink);
    margin: 0 0 8px;
    line-height: 1.3;
}
.sector-card-text {
    font-size: 12px;
    color: var(--c-muted);
    line-height: 1.55;
    margin: 0 0 14px;
    flex: 1;
}

/* --------------------------------------------------------------------------
   9. About / overview
   -------------------------------------------------------------------------- */
.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 42px;
    align-items: center;
}

.about-media { position: relative; }
.about-media-frame {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.about-media-frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3.2; }

.vm-stack {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: min(64%, 300px);
    display: grid;
    gap: 12px;
}
.vm-card {
    background: rgba(11, 59, 44, .96);
    backdrop-filter: blur(2px);
    border: 1px solid rgba(216, 164, 74, .28);
    border-radius: var(--radius);
    padding: 15px 16px;
    color: #fff;
    box-shadow: 0 12px 30px rgba(6, 40, 28, .34);
}
.vm-head {
    display: flex; align-items: center; gap: 8px;
    font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
    color: var(--c-gold);
    margin-bottom: 8px;
}
.vm-head svg { width: 15px; height: 15px; }
.vm-text { font-size: 11.5px; line-height: 1.6; color: rgba(255, 255, 255, .84); margin: 0; }

.about-body { font-size: 14px; color: var(--c-body); }
.about-body p { margin-bottom: .95em; }

.about-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid var(--c-line);
}
.about-feature { display: flex; align-items: center; gap: 9px; }
.about-feature svg { width: 26px; height: 26px; color: var(--c-green-700); flex: none; stroke-width: 1.5; }
.about-feature span { font-size: 11.5px; font-weight: 700; color: var(--c-ink); line-height: 1.3; }

/* --------------------------------------------------------------------------
   10. Service cards with image + checklist
   -------------------------------------------------------------------------- */
.service-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 13px;
    align-items: start;
}

.service-card {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.service-card-head {
    background: var(--c-green-850);
    color: #fff;
    padding: 10px 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .005em;
}
.service-card-media { aspect-ratio: 16 / 10; background: var(--c-surface-alt); overflow: hidden; }
.service-card-media img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .45s ease;
}
.service-card:hover .service-card-media img { transform: scale(1.06); }

.check-list { list-style: none; margin: 0; padding: 6px 14px 14px; }
.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 7px 0;
    font-size: 11.8px;
    line-height: 1.45;
    color: var(--c-body);
    border-bottom: 1px solid var(--c-line-soft);
}
.check-list li:last-child { border-bottom: 0; }
.check-list li svg { width: 13px; height: 13px; color: var(--c-green-600); flex: none; margin-top: 2px; }

.check-list-light li { color: rgba(255, 255, 255, .85); border-bottom-color: rgba(255, 255, 255, .1); }
.check-list-light li svg { color: var(--c-gold); }

/* Alternating image / text rows (services index) ---------------------------- */
.service-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
    gap: 40px;
    align-items: center;
    padding: 34px 0;
    border-bottom: 1px solid var(--c-line-soft);
}
.service-row:last-child { border-bottom: 0; }
.service-row.is-reversed .service-row-media { order: 2; }

.service-row-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.service-row-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }

.tag-list { list-style: none; margin: 16px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.tag-list li {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--c-surface-alt);
    border: 1px solid var(--c-line);
    border-radius: var(--radius-pill);
    padding: 5px 12px;
    font-size: 12px; font-weight: 600; color: var(--c-ink);
}
.tag-list li svg { width: 12px; height: 12px; color: var(--c-green-600); }

@media (max-width: 860px) {
    .service-row { grid-template-columns: 1fr; gap: 22px; }
    .service-row.is-reversed .service-row-media { order: 0; }
}

/* --------------------------------------------------------------------------
   11. Strengths band (dark)
   -------------------------------------------------------------------------- */
.band-dark {
    background: var(--c-green-850);
    border-radius: var(--radius);
    padding: 20px 24px 24px;
    color: #fff;
}
.band-head { text-align: center; margin-bottom: 14px; }

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
}
.strength {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 10px;
    border-inline-start: 1px solid rgba(255, 255, 255, .1);
}
.strength:first-child { border-inline-start: 0; }
.strength-icon {
    width: 34px; height: 34px; flex: none;
    border-radius: 50%;
    border: 1px solid rgba(216, 164, 74, .45);
    display: grid; place-items: center;
    color: var(--c-gold);
}
.strength-icon svg { width: 16px; height: 16px; }
.strength span { font-size: 11.2px; line-height: 1.35; color: rgba(255, 255, 255, .88); font-weight: 500; }

/* --------------------------------------------------------------------------
   12. Telecom block
   -------------------------------------------------------------------------- */
.telecom-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
    gap: 16px;
    align-items: stretch;
}

.numbered-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.numbered-card {
    background: var(--c-surface-alt);
    border: 1px solid var(--c-line);
    border-radius: var(--radius);
    padding: 18px 16px;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s;
}
.numbered-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); background: #fff; }
.numbered-card-top { display: flex; align-items: flex-start; gap: 11px; margin-bottom: 10px; }
.numbered-badge {
    width: 30px; height: 30px; flex: none;
    border-radius: 50%;
    background: var(--c-green-850);
    color: var(--c-gold);
    display: grid; place-items: center;
    font-size: 12px; font-weight: 800;
}
.numbered-card h3 { font-size: 13.5px; margin: 3px 0 0; line-height: 1.3; font-weight: 800; }
.numbered-card p { font-size: 11.8px; color: var(--c-muted); line-height: 1.55; margin: 0; }

.telecom-side { display: grid; grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr); gap: 14px; }
.telecom-photo { border-radius: var(--radius); overflow: hidden; min-height: 220px; }
.telecom-photo img { width: 100%; height: 100%; object-fit: cover; }

.capabilities-card {
    background: var(--c-green-850);
    border-radius: var(--radius);
    padding: 20px 20px 18px;
    color: #fff;
    display: flex;
    flex-direction: column;
}
.capabilities-card h3 { color: #fff; font-size: 15px; margin: 0 0 10px; }
.capabilities-card .check-list { padding: 0; }

.partners-title {
    color: #fff; font-size: 15px; font-weight: 800;
    margin: 18px 0 10px;
}
.partner-strip {
    background: #fff;
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
}
.partner-strip img { max-height: 26px; width: auto; object-fit: contain; }
.partner-name { font-weight: 800; color: var(--c-green-850); font-size: 15px; letter-spacing: .02em; }

/* --------------------------------------------------------------------------
   13. Why choose + core values
   -------------------------------------------------------------------------- */
.why-values-grid {
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(0, 2fr);
    gap: 34px;
    align-items: start;
}

.why-list { list-style: none; margin: 18px 0 0; padding: 0; }
.why-list li {
    display: flex; align-items: flex-start; gap: 9px;
    font-size: 12.5px; line-height: 1.5; color: var(--c-body);
    padding: 7px 0;
}
.why-list li svg { width: 14px; height: 14px; color: var(--c-green-600); flex: none; margin-top: 3px; }

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.value-card {
    background: var(--c-surface-alt);
    border: 1px solid var(--c-line-soft);
    border-radius: var(--radius);
    padding: 24px 16px;
    text-align: center;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); background: #fff; }
.value-card-icon { color: var(--c-green-850); display: grid; place-items: center; margin-bottom: 12px; }
.value-card-icon svg { width: 40px; height: 40px; stroke-width: 1.4; }
.value-card h3 { font-size: 14.5px; margin: 0 0 7px; }
.value-card p { font-size: 11.8px; color: var(--c-muted); line-height: 1.55; margin: 0; }

/* --------------------------------------------------------------------------
   14. Slogan band
   -------------------------------------------------------------------------- */
.slogan-band {
    background: var(--c-green-850);
    border-radius: var(--radius);
    padding: 22px 28px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
    gap: 24px;
    align-items: center;
}
.slogan-label {
    font-family: var(--font-script);
    font-size: 26px;
    font-weight: 700;
    color: var(--c-gold);
    line-height: 1;
    margin-bottom: 6px;
}
.slogan-text {
    font-size: clamp(17px, 2.1vw, 23px);
    font-weight: 700;
    color: #fff;
    margin: 0;
    letter-spacing: -.01em;
}

.slogan-facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px; }
.slogan-fact {
    display: flex; align-items: center; gap: 8px;
    padding: 4px 10px;
    border-inline-start: 1px solid rgba(255, 255, 255, .12);
}
.slogan-fact:first-child { border-inline-start: 0; }
.slogan-fact svg { width: 15px; height: 15px; color: var(--c-gold); flex: none; }
.slogan-fact b { display: block; font-size: 11px; color: var(--c-gold); font-weight: 800; line-height: 1.3; }
.slogan-fact span { display: block; font-size: 10.5px; color: var(--c-on-dark-soft); line-height: 1.3; }
.slogan-fact > div { min-width: 0; }

/* --------------------------------------------------------------------------
   15. Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--c-green-900); color: var(--c-on-dark-soft); padding-top: 52px; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.25fr 1.5fr 1fr;
    gap: 28px;
    padding-bottom: 40px;
}
.footer-about { font-size: 12.5px; line-height: 1.7; color: var(--c-on-dark-mute); margin: 16px 0 18px; }

.footer-title {
    font-size: 14.5px;
    font-weight: 800;
    color: var(--c-gold);
    margin: 0 0 16px;
}

.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links li + li { margin-top: 9px; }
.footer-links a { font-size: 12.5px; color: var(--c-on-dark-soft); }
.footer-links a:hover { color: var(--c-gold); padding-inline-start: 3px; }
.footer-links a { transition: color .18s ease, padding .18s ease; }

.footer-contact { list-style: none; margin: 0; padding: 0; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 12.5px; line-height: 1.6; margin-bottom: 13px; color: var(--c-on-dark-soft); }
.footer-contact li svg { width: 14px; height: 14px; color: var(--c-gold); flex: none; margin-top: 4px; }
.footer-contact a { color: inherit; }
.footer-contact a:hover { color: var(--c-gold); }

.footer-hours dt { font-size: 12.5px; font-weight: 700; color: var(--c-gold-200); margin-top: 12px; }
.footer-hours dt:first-child { margin-top: 0; }
.footer-hours dd { font-size: 12.5px; margin: 2px 0 0; color: var(--c-on-dark-mute); }

.socials { display: flex; gap: 9px; }
.social-btn {
    width: 32px; height: 32px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    display: grid; place-items: center;
    color: #fff;
    transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}
.social-btn svg { width: 15px; height: 15px; }
.social-btn:hover { background: var(--c-gold); border-color: var(--c-gold); color: var(--c-green-950); transform: translateY(-2px); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 18px 0;
    text-align: center;
    font-size: 12px;
    color: var(--c-on-dark-mute);
}
.footer-bottom a { color: var(--c-on-dark-soft); }
.footer-bottom a:hover { color: var(--c-gold); }

/* --------------------------------------------------------------------------
   16. Inner page furniture
   -------------------------------------------------------------------------- */
.page-hero {
    position: relative;
    background: var(--c-green-850);
    color: #fff;
    padding: 58px 0 52px;
    overflow: hidden;
    isolation: isolate;
}
.page-hero-media { position: absolute; inset: 0; z-index: -2; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::before {
    content: '';
    position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(100deg, rgba(6, 40, 28, .95) 0%, rgba(10, 55, 39, .82) 60%, rgba(10, 55, 39, .66) 100%);
}
.page-hero h1 { color: #fff; font-size: clamp(26px, 4vw, 40px); margin: 0 0 10px; }
.page-hero p { color: rgba(255, 255, 255, .78); font-size: 14.5px; max-width: 660px; margin: 0; }

.breadcrumb { list-style: none; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: 0 0 14px; padding: 0; font-size: 12px; }
.breadcrumb li { color: var(--c-on-dark-mute); display: inline-flex; align-items: center; gap: 8px; }
.breadcrumb li::after { content: '/'; color: rgba(255, 255, 255, .3); }
.breadcrumb li:last-child::after { content: none; }
.breadcrumb a { color: var(--c-gold); }
.breadcrumb a:hover { color: var(--c-gold-400); }

/* Prose ------------------------------------------------------------------- */
.prose { font-size: 14.5px; color: var(--c-body); line-height: 1.75; }
.prose h2 { font-size: 22px; margin: 1.6em 0 .6em; }
.prose h3 { font-size: 17px; margin: 1.5em 0 .5em; }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose ul, .prose ol { padding-left: 1.2rem; margin-bottom: 1.1em; }
.prose li { margin-bottom: .4em; }
.prose img { border-radius: var(--radius); margin: 1.2em 0; }
.prose a { text-decoration: underline; text-underline-offset: 2px; }
.prose blockquote {
    margin: 1.4em 0; padding: 14px 18px;
    border-inline-start: 3px solid var(--c-gold);
    background: var(--c-surface-alt);
    border-radius: 0 var(--radius) var(--radius) 0;
    color: var(--c-ink);
}
.prose table { width: 100%; border-collapse: collapse; margin: 1.2em 0; font-size: 13.5px; }
.prose th, .prose td { border: 1px solid var(--c-line); padding: 9px 12px; text-align: left; }
.prose th { background: var(--c-surface-alt); font-weight: 700; color: var(--c-ink); }

/* Generic content card ---------------------------------------------------- */
.card {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius);
    padding: 22px;
}
.card-flush { padding: 0; overflow: hidden; }
.card-dark { background: var(--c-green-850); border-color: transparent; color: #fff; }
.card-dark h2, .card-dark h3 { color: #fff; }

.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* Team -------------------------------------------------------------------- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
@media (max-width: 1080px) { .team-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 820px) { .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 480px) { .team-grid { grid-template-columns: 1fr; } }

.team-links { display: flex; gap: 7px; justify-content: center; margin-top: 12px; }
.team-links a {
    width: 30px; height: 30px;
    display: grid; place-items: center;
    border: 1px solid var(--c-line);
    border-radius: 50%;
    color: var(--c-green-700);
    transition: background-color .18s ease, border-color .18s ease, color .18s ease;
}
.team-links a svg { width: 13px; height: 13px; }
.team-links a:hover { background: var(--c-green-850); border-color: var(--c-green-850); color: #fff; }

.team-card {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius);
    overflow: hidden;
    text-align: center;
    transition: transform .2s ease, box-shadow .2s ease;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
/* Headshots are portrait (roughly 4:5). A square frame cropped 10% off the top
   and cut through people's heads, so the frame matches the photographs and the
   crop is biased upwards for any portrait that is taller still. */
.team-photo { aspect-ratio: 4 / 5; background: var(--c-surface-alt); position: relative; overflow: hidden; }
.team-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 15%;
}
.team-initials {
    position: absolute; inset: 0;
    display: grid; place-items: center;
    font-size: 34px; font-weight: 800; color: var(--c-gold);
    background: var(--c-green-850);
    letter-spacing: .02em;
}
.team-body { padding: 16px 14px 18px; }
.team-body h3 { font-size: 15px; margin: 0 0 3px; }
.team-role { font-size: 12px; color: var(--c-accent); font-weight: 700; margin: 0; }
.team-bio { font-size: 12px; color: var(--c-muted); margin: 8px 0 0; }

/* Project cards ----------------------------------------------------------- */
.project-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
@media (max-width: 1020px) { .project-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .project-grid { grid-template-columns: 1fr; } }

.project-card {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex; flex-direction: column;
    position: relative;
    transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
/* Gold rule that draws across the top on hover. */
.project-card::after {
    content: '';
    position: absolute; inset: 0 0 auto 0; height: 3px; z-index: 2;
    background: linear-gradient(90deg, var(--c-gold), var(--c-gold-400));
    transform: scaleX(0); transform-origin: left;
    transition: transform .35s ease;
}
.project-card:hover::after { transform: scaleX(1); }
.project-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(16, 33, 26, .16);
    border-color: rgba(26, 122, 78, .3);
}

.project-media {
    display: block;
    aspect-ratio: 4 / 3;
    background: var(--c-surface-alt);
    position: relative;
    overflow: hidden;
}
.project-media img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .6s cubic-bezier(.2, .7, .3, 1);
}
.project-card:hover .project-media img { transform: scale(1.07); }

/* Keeps the chips readable over a bright photograph. */
.project-shade {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(6, 40, 28, .42) 0%, rgba(6, 40, 28, 0) 38%, rgba(6, 40, 28, .06) 100%);
    transition: opacity .3s ease;
}
.project-card:hover .project-shade { opacity: .75; }

.project-tag {
    position: absolute; left: 12px; top: 12px; z-index: 1;
    background: rgba(6, 40, 28, .88);
    backdrop-filter: blur(3px);
    color: var(--c-gold);
    font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
    padding: 6px 11px; border-radius: var(--radius-pill);
    border: 1px solid rgba(216, 164, 74, .32);
}
.project-status {
    position: absolute; right: 12px; top: 12px; z-index: 1;
    background: var(--c-gold);
    color: var(--c-green-950);
    font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
    padding: 5px 10px; border-radius: var(--radius-pill);
}

/* Circular arrow that rises out of the image corner on hover. */
.project-open {
    position: absolute; right: 14px; bottom: 14px; z-index: 1;
    width: 38px; height: 38px; border-radius: 50%;
    display: grid; place-items: center;
    background: var(--c-gold); color: var(--c-green-950);
    opacity: 0; transform: translateY(10px) scale(.85);
    transition: opacity .3s ease, transform .3s ease;
}
.project-open svg { width: 17px; height: 17px; }
.project-card:hover .project-open { opacity: 1; transform: translateY(0) scale(1); }

.project-body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.project-body h3 { font-size: 16.5px; line-height: 1.32; margin: 0 0 9px; }
.project-body h3 a { color: var(--c-ink); }
.project-card:hover .project-body h3 a { color: var(--c-accent); }

.project-meta { display: flex; flex-wrap: wrap; gap: 6px 14px; font-size: 11.5px; color: var(--c-muted); margin-bottom: 11px; }
.project-meta span { display: inline-flex; align-items: center; gap: 5px; }
.project-meta svg { width: 12px; height: 12px; color: var(--c-gold-600); flex: none; }

.project-summary {
    font-size: 12.8px; line-height: 1.6; color: var(--c-muted);
    margin: 0 0 16px; flex: 1;
}

.project-cta {
    display: inline-flex; align-items: center; gap: 7px;
    margin-top: auto;
    font-size: 12.5px; font-weight: 800; color: var(--c-accent);
}
.project-cta svg { width: 14px; height: 14px; transition: transform .25s ease; }
.project-card:hover .project-cta svg { transform: translateX(5px); }

/* Gallery thumbnails ------------------------------------------------------ */
.thumb-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.thumb-row img {
    width: 88px; height: 62px; object-fit: cover; cursor: pointer;
    border: 2px solid transparent; border-radius: var(--radius-sm);
    transition: border-color .18s ease, opacity .18s ease;
    opacity: .75;
}
.thumb-row img:hover { opacity: 1; }
.thumb-row img.is-active { border-color: var(--c-gold); opacity: 1; }

/* Definition list --------------------------------------------------------- */
.detail-list { display: grid; grid-template-columns: 96px 1fr; gap: 0; margin: 10px 0 0; font-size: 13px; }
.detail-list dt { padding: 8px 0; font-weight: 700; color: var(--c-ink); border-bottom: 1px solid var(--c-line-soft); }
.detail-list dd { padding: 8px 0; margin: 0; border-bottom: 1px solid var(--c-line-soft); color: var(--c-body); }
.detail-list dt:last-of-type, .detail-list dd:last-of-type { border-bottom: 0; }

/* Job cards --------------------------------------------------------------- */
.job-card {
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius);
    padding: 20px 22px;
    display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.job-card:hover { border-color: rgba(26, 122, 78, .4); box-shadow: var(--shadow); }
.job-card h3 { font-size: 16px; margin: 0 0 8px; }
.job-meta { display: flex; flex-wrap: wrap; gap: 14px; font-size: 12px; color: var(--c-muted); }
.job-meta span { display: inline-flex; align-items: center; gap: 6px; }
.job-meta svg { width: 13px; height: 13px; color: var(--c-gold-600); }

.badge {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 4px 10px; border-radius: var(--radius-pill);
    font-size: 11px; font-weight: 700; letter-spacing: .03em;
    background: var(--c-surface-alt); color: var(--c-green-700);
    border: 1px solid var(--c-line);
}
.badge-gold { background: rgba(216, 164, 74, .16); color: var(--c-gold-700); border-color: rgba(216, 164, 74, .35); }
.badge-green { background: rgba(26, 122, 78, .12); color: var(--c-green-700); border-color: rgba(26, 122, 78, .28); }

/* FAQ --------------------------------------------------------------------- */
.faq-item { border: 1px solid var(--c-line); border-radius: var(--radius); background: #fff; margin-bottom: 10px; overflow: hidden; }
.faq-q {
    width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
    padding: 15px 18px; font-size: 14px; font-weight: 700; color: var(--c-ink);
    display: flex; align-items: center; justify-content: space-between; gap: 14px;
    font-family: inherit;
}
.faq-q svg { width: 16px; height: 16px; color: var(--c-gold-600); flex: none; transition: transform .25s ease; }
.faq-item.is-open .faq-q svg { transform: rotate(45deg); }
.faq-a { padding: 0 18px; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; font-size: 13.5px; color: var(--c-body); }
.faq-item.is-open .faq-a { padding: 0 18px 16px; max-height: 640px; }

/* Testimonials ------------------------------------------------------------ */
.quote-card {
    background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius);
    padding: 22px; display: flex; flex-direction: column; gap: 14px;
}
.quote-mark { width: 26px; height: 26px; color: var(--c-gold); }
.quote-text { font-size: 13.5px; color: var(--c-body); line-height: 1.7; flex: 1; margin: 0; }
.quote-author { display: flex; align-items: center; gap: 11px; }
.quote-author img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.quote-author b { display: block; font-size: 13px; color: var(--c-ink); }
.quote-author span { display: block; font-size: 11.5px; color: var(--c-muted); }
.stars { display: inline-flex; gap: 2px; color: var(--c-gold); }
.stars svg { width: 13px; height: 13px; }

/* CTA band ---------------------------------------------------------------- */
.cta-band {
    background: var(--c-green-850);
    border-radius: var(--radius);
    padding: 30px 34px;
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px;
    color: #fff;
}
.cta-band h2 { color: #fff; font-size: 23px; margin: 0 0 6px; }
.cta-band p { color: var(--c-on-dark-soft); font-size: 13.5px; margin: 0; }

/* --------------------------------------------------------------------------
   17. Forms
   -------------------------------------------------------------------------- */
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field-full { grid-column: 1 / -1; }

.label { font-size: 12.5px; font-weight: 700; color: var(--c-ink); }
.label .req { color: #C0392B; }

.input, .textarea, .select {
    width: 100%;
    padding: 11px 13px;
    font-family: inherit;
    font-size: 13.5px;
    color: var(--c-ink);
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: var(--radius-sm);
    transition: border-color .18s ease, box-shadow .18s ease;
}
.input::placeholder, .textarea::placeholder { color: #A6B0AB; }
.input:focus, .textarea:focus, .select:focus {
    outline: none;
    border-color: var(--c-green-600);
    box-shadow: 0 0 0 3px rgba(26, 122, 78, .13);
}
.textarea { min-height: 130px; resize: vertical; }
.select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236E7B75' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 11px center;
    background-size: 15px;
    padding-right: 34px;
}
.field-hint { font-size: 11.5px; color: var(--c-muted); }
.field-error { font-size: 11.5px; color: #C0392B; font-weight: 600; }
.input.is-invalid, .textarea.is-invalid, .select.is-invalid { border-color: #C0392B; }

.file-input {
    font-size: 12.5px; padding: 9px 12px;
    border: 1px dashed var(--c-line); border-radius: var(--radius-sm);
    background: var(--c-surface-alt); width: 100%;
}

.checkline { display: flex; align-items: flex-start; gap: 9px; font-size: 12.5px; color: var(--c-body); }
.checkline input { margin-top: 3px; accent-color: var(--c-green-600); }

/* Alerts ------------------------------------------------------------------ */
.alert {
    display: flex; align-items: flex-start; gap: 11px;
    padding: 13px 16px; border-radius: var(--radius);
    font-size: 13.5px; margin-bottom: 20px;
    border: 1px solid transparent;
}
.alert svg { width: 17px; height: 17px; flex: none; margin-top: 2px; }
.alert-success { background: #ECF7F1; border-color: #BFE3D0; color: #14653F; }
.alert-error { background: #FDECEA; border-color: #F5C6C0; color: #932117; }
.alert-info { background: #EEF4FB; border-color: #C9DDF2; color: #1B4E80; }

/* Contact info tiles ------------------------------------------------------ */
.info-tile {
    background: #fff; border: 1px solid var(--c-line); border-radius: var(--radius);
    padding: 20px; display: flex; gap: 13px; align-items: flex-start;
}
.info-tile-icon {
    width: 42px; height: 42px; flex: none; border-radius: var(--radius-sm);
    background: var(--c-green-850); color: var(--c-gold);
    display: grid; place-items: center;
}
.info-tile-icon svg { width: 18px; height: 18px; }
.info-tile h3 { font-size: 13.5px; margin: 0 0 4px; }
.info-tile p, .info-tile a { font-size: 12.5px; color: var(--c-muted); margin: 0; line-height: 1.6; }
.info-tile a:hover { color: var(--c-accent); }

.map-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--c-line); line-height: 0; }
.map-frame iframe { width: 100%; height: 380px; border: 0; }

/* Portfolio filter bar ---------------------------------------------------- */
.portfolio-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 20px;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--c-line);
}
.portfolio-bar .filter-row { margin-bottom: 0; }
.portfolio-count {
    margin: 0;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--c-muted);
    white-space: nowrap;
}

@media (max-width: 620px) {
    .portfolio-bar { justify-content: flex-start; }
}

/* Filter chips ------------------------------------------------------------ */
.filter-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.filter-chip {
    display: inline-flex; align-items: center;
    padding: 7px 15px;
    border: 1px solid var(--c-line);
    border-radius: var(--radius-pill);
    background: #fff;
    font-size: 12.5px; font-weight: 700; color: var(--c-body);
    transition: border-color .18s, background-color .18s, color .18s;
}
.filter-chip:hover { border-color: var(--c-green-600); color: var(--c-accent); }
.filter-chip.is-active { background: var(--c-green-850); border-color: var(--c-green-850); color: #fff; }

/* Pagination -------------------------------------------------------------- */
.pagination { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; list-style: none; padding: 0; margin: 30px 0 0; }
.pagination li span, .pagination li a {
    display: grid; place-items: center; min-width: 36px; height: 36px; padding: 0 11px;
    border: 1px solid var(--c-line); border-radius: var(--radius-sm);
    font-size: 13px; font-weight: 600; color: var(--c-body); background: #fff;
}
.pagination li a:hover { border-color: var(--c-green-600); color: var(--c-accent); }
.pagination li[aria-current] span, .pagination .active span { background: var(--c-green-850); border-color: var(--c-green-850); color: #fff; }
.pagination .disabled span { opacity: .45; }
.pagination svg { width: 14px; height: 14px; }

/* Empty state ------------------------------------------------------------- */
.empty-state { text-align: center; padding: 48px 20px; color: var(--c-muted); }
.empty-state svg { width: 44px; height: 44px; color: var(--c-line); margin: 0 auto 14px; }
.empty-state h3 { font-size: 17px; color: var(--c-ink); margin-bottom: 6px; }

/* Back to top ------------------------------------------------------------- */
.to-top {
    position: fixed; right: 20px; bottom: 20px; z-index: 80;
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--c-green-850); color: var(--c-gold);
    border: 1px solid rgba(216, 164, 74, .4);
    display: grid; place-items: center; cursor: pointer;
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
    box-shadow: var(--shadow);
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top svg { width: 18px; height: 18px; }
.to-top:hover { background: var(--c-gold); color: var(--c-green-950); }

/* Reveal on scroll -------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
    * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* --------------------------------------------------------------------------
   18. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1180px) {
    .sector-grid { grid-template-columns: repeat(3, 1fr); }
    .service-grid { grid-template-columns: repeat(3, 1fr); }
    .strengths-grid { grid-template-columns: repeat(3, 1fr); }
    .strengths-grid .strength:nth-child(3n+1) { border-inline-start: 0; }
    .footer-grid { grid-template-columns: 1.4fr 1fr 1.2fr 1.4fr; }
    .footer-hours-col { grid-column: 2 / -1; }
}

@media (max-width: 1080px) {
    .telecom-grid { grid-template-columns: 1fr; }
    .telecom-side { grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); }
    .why-values-grid { grid-template-columns: 1fr; gap: 26px; }
    .slogan-band { grid-template-columns: 1fr; }
    .slogan-facts { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 992px) {
    :root { --header-h: 66px; }

    .nav-toggle { display: inline-flex; }

    .main-nav {
        position: fixed;
        inset: 0 0 0 auto;
        width: min(340px, 88vw);
        background: var(--c-green-900);
        flex-direction: column;
        align-items: stretch;
        padding: 78px 18px 28px;
        gap: 0;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform .28s ease;
        z-index: 90;
        box-shadow: -12px 0 40px rgba(0, 0, 0, .3);
    }
    .main-nav.is-open { transform: translateX(0); }
    .nav-list { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
    .nav-link { padding: 13px 6px; font-size: 14.5px; justify-content: space-between; width: 100%; }
    .nav-link::after { display: none; }
    .nav-item { border-bottom: 1px solid rgba(255, 255, 255, .08); }
    .nav-item:last-child { border-bottom: 0; }

    .dropdown {
        position: static;
        opacity: 1; visibility: visible; transform: none;
        background: transparent; border: 0; box-shadow: none;
        padding: 0 0 10px 12px;
        max-height: 0; overflow: hidden;
        transition: max-height .3s ease;
    }
    .nav-item.is-expanded > .dropdown { max-height: 700px; }
    .nav-item:hover > .dropdown { max-height: 0; }
    .nav-item.is-expanded:hover > .dropdown { max-height: 700px; }
    .dropdown a { color: var(--c-on-dark-soft); font-size: 13px; padding: 8px 8px; }
    .dropdown a:hover { background: rgba(255, 255, 255, .07); color: var(--c-gold); }
    .nav-item.is-expanded > .nav-link .caret { transform: rotate(180deg); }

    .header-cta { display: none; }
    .nav-mobile-cta { display: block; margin-top: 18px; }

    /* Must stay below the header (z-index 100), because the menu lives inside
       the header's stacking context and cannot rise above this on its own. */
    .nav-backdrop {
        position: fixed; inset: 0; background: rgba(6, 40, 28, .55);
        opacity: 0; visibility: hidden; transition: opacity .28s ease, visibility .28s; z-index: 90;
    }
    .nav-backdrop.is-open { opacity: 1; visibility: visible; }

    .stats-strip { grid-template-columns: repeat(3, 1fr); }
    .stat:nth-child(3n+1) { border-inline-start: 0; }
    .stat:nth-child(n+4) { border-top: 1px solid rgba(255, 255, 255, .1); }

    .about-grid { grid-template-columns: 1fr; gap: 30px; }
    .vm-stack { position: static; transform: none; width: 100%; margin-top: 14px; grid-template-columns: 1fr 1fr; }
    .about-features { grid-template-columns: repeat(2, 1fr); }

    .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .values-grid { grid-template-columns: repeat(2, 1fr); }

    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 24px; }
    .footer-hours-col { grid-column: auto; }
}

@media (max-width: 760px) {
    .section { padding: 46px 0; }
    .section-lg { padding: 56px 0; }

    .hero-inner { padding-top: 52px; padding-bottom: 120px; }
    .hero-curve { height: 54px; }
    .hero-actions .btn { flex: 1 1 auto; }

    .stats-wrap { margin-top: -72px; }
    .stats-strip { grid-template-columns: repeat(2, 1fr); }
    .stat { border-inline-start: 0; border-top: 1px solid rgba(255, 255, 255, .1); }
    .stat:nth-child(-n+2) { border-top: 0; }
    .stat:nth-child(even) { border-inline-start: 1px solid rgba(255, 255, 255, .1); }

    .sector-grid { grid-template-columns: repeat(2, 1fr); }
    .service-grid { grid-template-columns: repeat(2, 1fr); }
    .numbered-grid { grid-template-columns: 1fr; }
    .telecom-side { grid-template-columns: 1fr; }
    .telecom-photo { min-height: 200px; }

    .strengths-grid { grid-template-columns: repeat(2, 1fr); }
    .strengths-grid .strength { border-inline-start: 0; }
    .strengths-grid .strength:nth-child(even) { border-inline-start: 1px solid rgba(255, 255, 255, .1); }

    .slogan-facts { grid-template-columns: repeat(2, 1fr); gap: 12px 6px; }
    .slogan-fact:nth-child(odd) { border-inline-start: 0; }

    .form-grid { grid-template-columns: 1fr; }
    .cta-band { padding: 24px; }
    .band-dark { padding: 18px 16px 20px; }
    .map-frame iframe { height: 300px; }
}

@media (max-width: 560px) {
    .topbar-inner { justify-content: center; gap: 12px 16px; font-size: 11.5px; padding-block: 8px; }
    .topbar-item.is-hidden-xs { display: none; }
    .brand-name { font-size: 16px; }
    .brand-tag { font-size: 10.5px; }
    .brand-mark { width: 36px; height: 40px; }

    .sector-grid, .service-grid, .values-grid, .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; }
    .vm-stack { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .job-card { flex-direction: column; align-items: flex-start; }
}

/* --------------------------------------------------------------------------
   19. Print
   -------------------------------------------------------------------------- */
@media print {
    .topbar, .site-header, .site-footer, .to-top, .hero-actions, .nav-backdrop { display: none !important; }
    body { color: #000; font-size: 12pt; }
    .section { padding: 12pt 0; }
    a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #555; }
}
