/* =============================
   NETA — custom design layer
   Built on top of the Finris template CSS to keep the
   template's typography, spacing, animations, and responsive
   behaviour while applying NETA's enterprise visual identity.
   ============================= */

:root {
    --neta-primary: #0b2540;
    --neta-primary-2: #14365e;
    --neta-accent: #1f6feb;
    --neta-accent-2: #38b6ff;
    --neta-ink: #0f1623;
    --neta-muted: #5d6b80;
    --neta-line: #e6ebf2;
    --neta-bg-soft: #f4f7fb;
    --neta-bg-dark: #0b1a2e;
    --neta-radius: 10px;
    --neta-radius-lg: 16px;
}

body { color: var(--neta-ink); background: #fff; }

a { color: var(--neta-accent); }
a:hover { color: var(--neta-primary); }

/* ---------- Wordmark / Logo ---------- */
.neta-logo {
    font-family: 'DM Sans', sans-serif;
    font-weight: 800;
    font-size: 28px;
    letter-spacing: 4px;
    color: var(--neta-primary);
    text-decoration: none;
    line-height: 1;
    display: inline-block;
    position: relative;
    padding-left: 14px;
}
.neta-logo::before {
    content: "";
    position: absolute;
    left: 0; top: 4px; bottom: 4px;
    width: 4px;
    background: linear-gradient(180deg, var(--neta-accent), var(--neta-accent-2));
    border-radius: 2px;
}
.neta-footer__logo .neta-logo { color: #fff; }

.neta-logo--image {
    padding-left: 0;
    line-height: 0;
}

.neta-logo--image::before {
    display: none;
}

.neta-logo--image img {
    display: block;
    width: auto;
    height: 44px;
}

.mobile-nav__content .neta-logo--image img {
    height: 40px;
}

.neta-footer__logo .neta-logo--image {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 16px;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.neta-footer__logo .neta-logo--image img {
    height: 38px;
}

/* ---------- Header (sticky, professional) ---------- */
.neta-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid rgba(11, 37, 64, 0.06);
    z-index: 100;
    transition: box-shadow .22s ease, background-color .22s ease, border-color .22s ease;
}
.neta-header.is-scrolled {
    background: rgba(255, 255, 255, 0.96);
    border-bottom-color: var(--neta-line);
    box-shadow: 0 6px 24px rgba(11, 37, 64, 0.06);
}

/* Inner row */
.neta-header .main-menu__wrapper-inner {
    min-height: 72px;
    align-items: center;
}
.neta-header .main-menu__main-menu-box {
    display: flex;
    align-items: center;
}

/* Top-level link — clean pill, no underline ever */
.neta-header .main-menu__list > li {
    list-style: none;
    margin: 0;
}
.neta-header .main-menu__list > li > a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--neta-ink);
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    font-weight: 500;
    font-size: 14.5px;
    line-height: 1;
    letter-spacing: 0.1px;
    padding: 10px 14px;
    margin: 0 2px;
    border-radius: 10px;
    text-decoration: none !important;
    background-color: transparent;
    transition: color .2s ease, background-color .2s ease;
    -webkit-tap-highlight-color: transparent;
}

/* Remove the template's extra dropdown arrow/padding in the top nav.
   We render our own caret via ::before for dropdown parents. */
.neta-header .main-menu .main-menu__list > li.dropdown > a {
    padding-right: 14px;
}
.neta-header .main-menu .main-menu__list > li.dropdown > a::after {
    content: none;
    display: none;
}
.neta-header .main-menu__list > li > a,
.neta-header .main-menu__list > li > a:link,
.neta-header .main-menu__list > li > a:visited,
.neta-header .main-menu__list > li > a:hover,
.neta-header .main-menu__list > li > a:focus,
.neta-header .main-menu__list > li > a:active { text-decoration: none !important; }

/* Hover — soft accent pill */
.neta-header .main-menu__list > li > a:hover {
    color: var(--neta-accent);
    background-color: rgba(31, 111, 235, 0.08);
}
/* Active page — color + small dot indicator placed BELOW the pill */
.neta-header .main-menu__list > li.current > a { color: var(--neta-accent); }
.neta-header .main-menu__list > li.current > a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--neta-accent);
    transform: translateX(-50%);
    box-shadow: 0 0 0 4px rgba(31, 111, 235, 0.15);
}

/* Make dropdown parents look exactly like regular top-level nav items. */
.neta-header .main-menu__list > li.dropdown > a::before {
    content: none;
    display: none;
}

/* Focus-visible — soft inset ring inside the pill (not a giant outline) */
.neta-header .main-menu__list > li > a:focus { outline: none; }
.neta-header .main-menu__list > li > a:focus-visible {
    outline: none;
    box-shadow: 0 0 0 2px var(--neta-accent), 0 0 0 5px rgba(31, 111, 235, 0.25);
}

/* Dropdown panel */
.neta-header .main-menu__list > li.dropdown { position: relative; }
.neta-header .main-menu__list > li.dropdown > ul {
    position: absolute;
    top: calc(100% + 14px);
    left: -8px;
    background: #fff;
    min-width: 280px;
    padding: 10px;
    border: 1px solid var(--neta-line);
    border-radius: 14px;
    box-shadow: 0 18px 50px rgba(11, 37, 64, 0.12);
    list-style: none;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transform-origin: top center;
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
    z-index: 50;
}
.neta-header .main-menu__list > li.dropdown::before {
    content: "";
    position: absolute;
    left: 0; right: 0;
    bottom: -14px;
    height: 14px;
}
.neta-header .main-menu__list > li.dropdown:hover > ul,
.neta-header .main-menu__list > li.dropdown:focus-within > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.neta-header .main-menu__list > li.dropdown > ul li { list-style: none; }
.neta-header .main-menu__list > li.dropdown > ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--neta-ink);
    text-decoration: none !important;
    border-radius: 10px;
    transition: color .2s ease, background-color .2s ease;
}
.neta-header .main-menu__list > li.dropdown > ul li a::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(31, 111, 235, 0.25);
    flex-shrink: 0;
    transition: background .2s ease, transform .2s ease;
}
.neta-header .main-menu__list > li.dropdown > ul li a:hover {
    color: var(--neta-accent);
    background-color: rgba(31, 111, 235, 0.07);
}
.neta-header .main-menu__list > li.dropdown > ul li a:hover::before {
    background: var(--neta-accent);
    transform: scale(1.4);
}

/* Header CTA (Get in Touch) — refined */
.neta-header .main-menu__btn-box .thm-btn {
    padding: 12px 22px;
    font-size: 13.5px;
    letter-spacing: 0.3px;
}

/* Mobile nav toggle */
.neta-header .mobile-nav__toggler {
    color: var(--neta-primary);
    font-size: 22px;
    line-height: 1;
    padding: 8px 10px;
    border-radius: 10px;
    transition: background-color .2s ease;
}
.neta-header .mobile-nav__toggler:hover {
    background-color: rgba(31, 111, 235, 0.08);
}

.thm-btn {
    background: var(--neta-primary);
    color: #fff !important;
    border-radius: 999px;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.4px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
    border: none;
    text-decoration: none;
}
.thm-btn:hover { background: var(--neta-accent); transform: translateY(-1px); box-shadow: 0 12px 28px rgba(31,111,235,0.25); }
.thm-btn--alt { background: transparent; color: var(--neta-primary) !important; box-shadow: inset 0 0 0 1px var(--neta-primary); }
.thm-btn--alt:hover { background: var(--neta-primary); color: #fff !important; }
.neta-section--dark .thm-btn--alt,
.neta-cta .thm-btn--alt { color: #fff !important; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.6); }
.neta-section--dark .thm-btn--alt:hover,
.neta-cta .thm-btn--alt:hover { background: #fff; color: var(--neta-primary) !important; }

/* ---------- Hero ---------- */
.neta-hero {
    position: relative;
    color: #fff;
    padding: 140px 0 110px;
    overflow: hidden;
    isolation: isolate;
}
.neta-hero__bg {
    position: absolute; inset: 0;
    background:
        radial-gradient(1200px 600px at 80% -10%, rgba(56,182,255,0.20), transparent 60%),
        radial-gradient(900px 600px at 10% 110%, rgba(31,111,235,0.30), transparent 60%),
        linear-gradient(135deg, #061229 0%, #0b1a2e 45%, #0e2745 100%);
    z-index: -2;
}
.neta-hero__overlay {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(900px 500px at 30% 40%, #000 30%, transparent 80%);
    z-index: -1;
}
.neta-hero__tag {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 13px;
    color: var(--neta-accent-2);
    margin-bottom: 16px;
}
.neta-hero__title {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.08;
    margin-bottom: 22px;
    letter-spacing: -0.5px;
}
.neta-hero__subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255,255,255,0.82);
    max-width: 820px;
    margin-bottom: 28px;
}
.neta-hero__keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}
.neta-hero__keywords li {
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.18);
    color: #d6e4f7;
}
.neta-hero__btns { display: flex; flex-wrap: wrap; gap: 14px; }
.neta-hero .thm-btn { background: var(--neta-accent); }
.neta-hero .thm-btn:hover { background: #fff; color: var(--neta-primary) !important; }
.neta-hero .thm-btn--alt { background: transparent; color: #fff !important; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.6); }
.neta-hero .thm-btn--alt:hover { background: #fff; color: var(--neta-primary) !important; }

/* ---------- Section ---------- */
.neta-section { padding: 90px 0; }
.neta-section--alt { background: var(--neta-bg-soft); }
.neta-section--dark {
    background: linear-gradient(135deg, #0b1a2e 0%, #14365e 100%);
    color: #fff;
}
.neta-section__lead {
    color: var(--neta-muted);
    max-width: 800px;
    margin: 0 auto 24px;
    font-size: 16px;
    line-height: 1.7;
}
.neta-section--dark .neta-section__lead--light { color: rgba(255,255,255,0.78); }

/* Section title */
.section-title { margin-bottom: 50px; }
.section-title__tagline {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    font-weight: 700;
    color: var(--neta-accent);
    margin-bottom: 12px;
}
.section-title__tagline--light { color: var(--neta-accent-2); }
.section-title__title {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: clamp(28px, 3.6vw, 42px);
    line-height: 1.15;
    color: var(--neta-primary);
    margin-bottom: 14px;
    letter-spacing: -0.4px;
}
.section-title__title--light { color: #fff; }

/* ---------- Service cards ---------- */
.neta-service-card {
    background: #fff;
    border: 1px solid var(--neta-line);
    border-radius: var(--neta-radius-lg);
    padding: 32px 28px;
    height: 100%;
    margin-bottom: 32px;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    position: relative;
    overflow: hidden;
}
.neta-service-card::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 3px;
    background: linear-gradient(90deg, var(--neta-accent), var(--neta-accent-2));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
}
.neta-service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 48px rgba(11, 37, 64, 0.10);
    border-color: transparent;
}
.neta-service-card:hover::after { transform: scaleX(1); }
.neta-service-card__icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--neta-accent), var(--neta-accent-2));
    color: #fff;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 24px;
    margin-bottom: 22px;
}
.neta-service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--neta-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}
.neta-service-card h3 a { color: inherit; text-decoration: none; }
.neta-service-card h3 a:hover { color: var(--neta-accent); }
.neta-service-card p { color: var(--neta-muted); line-height: 1.7; margin-bottom: 18px; font-size: 15px; }

.neta-link {
    color: var(--neta-accent);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.neta-link:hover { color: var(--neta-primary); }

/* ---------- Tiles (telecom / digital platforms) ---------- */
.neta-tile {
    background: #fff;
    border: 1px solid var(--neta-line);
    border-radius: var(--neta-radius);
    padding: 22px 22px;
    height: 100%;
    margin-bottom: 32px;
    transition: border-color .25s ease, transform .25s ease;
}
.neta-tile:hover { border-color: var(--neta-accent); transform: translateY(-2px); }
.neta-tile h4 { color: var(--neta-primary); font-weight: 700; font-size: 17px; margin-bottom: 8px; }
.neta-tile p { color: var(--neta-muted); font-size: 14px; line-height: 1.65; margin: 0; }

.neta-tile--dark {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.10);
}
.neta-tile--dark:hover { border-color: var(--neta-accent-2); }
.neta-tile--dark h4 { color: #fff; }
.neta-tile--dark p { color: rgba(255,255,255,0.88); }

/* ---------- Process steps ---------- */
.neta-process { margin-top: 20px; }
.neta-step {
    background: #fff;
    border: 1px solid var(--neta-line);
    border-radius: var(--neta-radius);
    padding: 28px 22px;
    height: 100%;
    margin-bottom: 32px;
    position: relative;
    transition: transform .25s ease, box-shadow .25s ease;
}
.neta-step:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(11,37,64,0.08); }
.neta-step__num {
    display: inline-block;
    font-family: 'Koulen', sans-serif;
    font-size: 36px;
    color: var(--neta-accent);
    line-height: 1;
    margin-bottom: 14px;
}
.neta-step h3 { color: var(--neta-primary); font-weight: 700; font-size: 18px; margin-bottom: 8px; }
.neta-step p { color: var(--neta-muted); font-size: 14px; line-height: 1.65; margin: 0; }

/* ---------- Industries ---------- */
.neta-industry {
    background: #fff;
    border: 1px solid var(--neta-line);
    border-radius: var(--neta-radius);
    padding: 24px 22px;
    height: 100%;
    margin-bottom: 32px;
    transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
    position: relative;
}
.neta-industry::before {
    content: "";
    position: absolute;
    left: 22px; top: 22px;
    width: 36px; height: 3px; border-radius: 2px;
    background: linear-gradient(90deg, var(--neta-accent), var(--neta-accent-2));
}
.neta-industry:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(11,37,64,0.08); border-color: transparent; }
.neta-industry h4 { color: var(--neta-primary); font-weight: 700; font-size: 17px; margin: 22px 0 8px; }
.neta-industry p { color: var(--neta-muted); font-size: 14px; line-height: 1.65; margin: 0; }

/* ---------- Projects ---------- */
.neta-project {
    background: #fff;
    border: 1px solid var(--neta-line);
    border-radius: var(--neta-radius-lg);
    padding: 32px 28px;
    margin-bottom: 32px;
    position: relative;
    transition: transform .25s ease, box-shadow .25s ease;
}
.neta-project:hover { transform: translateY(-3px); box-shadow: 0 24px 48px rgba(11,37,64,0.10); }
.neta-project__tag {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(31,111,235,0.10);
    color: var(--neta-accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.neta-project h3 { color: var(--neta-primary); font-weight: 700; font-size: 22px; margin-bottom: 10px; }
.neta-project p { color: var(--neta-muted); line-height: 1.7; margin: 0; }
.neta-note {
    text-align: center;
    color: var(--neta-muted);
    font-size: 14px;
    margin: 16px 0 30px;
    font-style: italic;
}

/* ---------- Values list ---------- */
.neta-values { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; }
.neta-values li {
    padding: 14px 18px 14px 44px;
    background: var(--neta-bg-soft);
    border-radius: 10px;
    color: var(--neta-ink);
    font-weight: 500;
    position: relative;
    line-height: 1.4;
}
.neta-values li::before {
    content: "✓";
    position: absolute;
    left: 16px; top: 50%;
    transform: translateY(-50%);
    color: var(--neta-accent);
    font-weight: 700;
}
@media (max-width: 720px) { .neta-values { grid-template-columns: 1fr; } }

/* ---------- Pillar card ---------- */
.neta-pillar-card {
    background: #fff;
    border: 1px solid var(--neta-line);
    border-radius: var(--neta-radius-lg);
    padding: 30px 28px;
    box-shadow: 0 24px 48px rgba(11,37,64,0.06);
}
.neta-pillar-card h4 { color: var(--neta-primary); font-weight: 700; font-size: 18px; margin-bottom: 14px; }
.neta-pillar-card ul li {
    padding: 10px 0 10px 28px;
    border-bottom: 1px solid var(--neta-line);
    color: var(--neta-ink);
    position: relative;
    font-size: 15px;
}
.neta-pillar-card ul li:last-child { border-bottom: 0; }
.neta-pillar-card ul li::before {
    content: "→";
    position: absolute;
    left: 0; top: 10px;
    color: var(--neta-accent);
    font-weight: 700;
}

/* ---------- Insights / article cards ---------- */
.neta-article {
    display: block;
    background: #fff;
    border: 1px solid var(--neta-line);
    border-radius: var(--neta-radius-lg);
    padding: 28px 26px;
    height: 100%;
    margin-bottom: 32px;
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.neta-article:hover { transform: translateY(-3px); box-shadow: 0 24px 48px rgba(11,37,64,0.10); border-color: transparent; }
.neta-article__cat {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--neta-accent);
    margin-bottom: 12px;
}
.neta-article h4 { color: var(--neta-primary); font-weight: 700; font-size: 18px; line-height: 1.35; margin-bottom: 10px; }
.neta-article p { color: var(--neta-muted); line-height: 1.65; font-size: 14px; margin: 0; }
.neta-article--cta {
    background: linear-gradient(135deg, var(--neta-primary), var(--neta-primary-2));
    border-color: transparent;
    color: #fff;
}
.neta-article--cta h4 { color: #fff; }
.neta-article--cta p { color: rgba(255,255,255,0.88); margin-bottom: 16px; }
.neta-article--cta .neta-link { color: var(--neta-accent-2); }

/* ---------- CTA ---------- */
.neta-cta {
    background: linear-gradient(135deg, #0b1a2e 0%, #14365e 100%);
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.neta-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(800px 400px at 90% 0%, rgba(56,182,255,0.20), transparent 60%),
        radial-gradient(800px 400px at 0% 100%, rgba(31,111,235,0.25), transparent 60%);
}
.neta-cta__inner { position: relative; text-align: center; max-width: 880px; margin: 0 auto; }
.neta-cta__inner h2 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: clamp(26px, 3.4vw, 38px);
    line-height: 1.2;
    margin-bottom: 26px;
    color: #fff;
}
.neta-cta__btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Page Header (inner pages) ---------- */
.neta-page-header {
    background: linear-gradient(135deg, #0b1a2e 0%, #14365e 100%);
    color: #fff;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}
.neta-page-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(900px 500px at 80% 30%, rgba(56,182,255,0.15), transparent 60%),
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: auto, 56px 56px, 56px 56px;
    background-position: 0 0, 0 0, 0 0;
}
.neta-page-header__inner { position: relative; }
.neta-page-header__tag {
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--neta-accent-2);
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 14px;
}
.neta-page-header h1 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: clamp(32px, 4.5vw, 52px);
    line-height: 1.12;
    margin-bottom: 16px;
    color: #fff;
}
.neta-page-header__lead {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255,255,255,0.82);
    max-width: 820px;
    margin-bottom: 18px;
}
.neta-breadcrumb {
    display: flex; flex-wrap: wrap; gap: 10px; align-items: center;
    color: rgba(255,255,255,0.7); font-size: 13px;
    list-style: none; padding: 0; margin: 0;
}
.neta-breadcrumb a { color: rgba(255,255,255,0.7); text-decoration: none; }
.neta-breadcrumb a:hover { color: #fff; }
.neta-breadcrumb li + li::before { content: "/"; margin-right: 10px; opacity: .5; }

/* ---------- Footer ---------- */
.neta-footer {
    background: #06121f;
    color: #c5d2e3;
    padding-top: 80px;
}
.neta-footer .footer-widget-two__title {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}
.neta-footer .footer-widget-two__title::after {
    content: "";
    position: absolute;
    left: 0; bottom: 0;
    width: 32px; height: 2px;
    background: var(--neta-accent-2);
}
.neta-footer .footer-widget-two__quick-links-list li a {
    color: #b6c5d9;
    font-size: 14px;
    padding: 6px 0;
    display: inline-block;
    text-decoration: none;
    transition: color .2s ease, padding-left .2s ease;
}
.neta-footer .footer-widget-two__quick-links-list li a:hover { color: var(--neta-accent-2); padding-left: 4px; }
.neta-footer .footer-widget-two__get-in-touch-list li {
    display: flex; align-items: flex-start; gap: 12px;
    margin-bottom: 14px; font-size: 14px; color: #b6c5d9;
}
.neta-footer .footer-widget-two__get-in-touch-list li .icon {
    flex-shrink: 0;
    width: 32px; height: 32px;
    border-radius: 8px;
    background: rgba(31,111,235,0.18);
    color: var(--neta-accent-2);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 14px;
}
.neta-footer .footer-widget-two__get-in-touch-list li .text p { margin: 0; line-height: 1.5; }
.neta-footer .footer-widget-two__get-in-touch-list li .text a { color: #b6c5d9; text-decoration: none; }
.neta-footer .footer-widget-two__get-in-touch-list li .text a:hover { color: var(--neta-accent-2); }
.neta-footer .footer-widget-two__get-in-touch-list li .text strong { color: #fff; display: block; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 2px; }

.neta-footer__about { color: #9bb0c8; font-size: 14px; line-height: 1.65; margin: 18px 0 24px; }
.neta-footer .site-footer-two__social { display: flex; gap: 10px; margin-top: 6px; }
.neta-footer .site-footer-two__social a {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    color: #c5d2e3;
    display: inline-flex; align-items: center; justify-content: center;
    transition: background .25s ease, color .25s ease;
    text-decoration: none;
}
.neta-footer .site-footer-two__social a:hover { background: var(--neta-accent); color: #fff; }
.neta-footer .site-footer-two__social-title { color: #fff; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px; }

.neta-footer__inline { display: flex; flex-wrap: wrap; gap: 6px 14px; }
.neta-footer__inline li a { font-size: 13px; }

.neta-footer .site-footer-two__bottom {
    margin-top: 60px;
    padding: 22px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    background: transparent;
}
.neta-footer .site-footer-two__copyright-text { color: #8a9db4; font-size: 13px; margin: 0; text-align: center; }

.mt-30 { margin-top: 30px; }

/* ---------- Contact page ---------- */
.neta-contact { padding: 90px 0; }
.neta-contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
@media (max-width: 992px) { .neta-contact-grid { grid-template-columns: 1fr; } }
.neta-office {
    background: #fff;
    border: 1px solid var(--neta-line);
    border-radius: var(--neta-radius-lg);
    padding: 30px 28px;
    height: 100%;
}
.neta-office__tag {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(31,111,235,0.10);
    color: var(--neta-accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.neta-office h3 { color: var(--neta-primary); font-weight: 700; font-size: 22px; margin-bottom: 10px; }
.neta-office p { color: var(--neta-muted); line-height: 1.7; margin: 0; }

.neta-form {
    background: #fff;
    border: 1px solid var(--neta-line);
    border-radius: var(--neta-radius-lg);
    padding: 32px 28px;
    margin-top: 30px;
}
.neta-form h3 { color: var(--neta-primary); font-weight: 700; margin-bottom: 8px; }
.neta-form p.neta-form__lead { color: var(--neta-muted); margin-bottom: 22px; }
.neta-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 720px) { .neta-form .form-row { grid-template-columns: 1fr; } }
.neta-form .form-group { margin-bottom: 18px; }
.neta-form label { display: block; font-size: 13px; font-weight: 600; color: var(--neta-ink); margin-bottom: 6px; }
.neta-form input, .neta-form select, .neta-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--neta-line);
    border-radius: 10px;
    background: #fff;
    color: var(--neta-ink);
    font-size: 15px;
    font-family: inherit;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.neta-form input:focus, .neta-form select:focus, .neta-form textarea:focus {
    outline: none;
    border-color: var(--neta-accent);
    box-shadow: 0 0 0 3px rgba(31,111,235,0.15);
}
.neta-form textarea { min-height: 140px; resize: vertical; }

/* ---------- Mobile nav adjustments (override colors in template) ---------- */
.mobile-nav__content {
    width: min(320px, calc(100vw - 44px));
    background: #fff;
    box-shadow: 18px 0 48px rgba(11, 37, 64, 0.14);
}
.mobile-nav__content .logo-box { padding: 28px 22px 14px; }
.mobile-nav__close {
    color: var(--neta-primary);
}
.mobile-nav__contact li,
.mobile-nav__contact a {
    color: var(--neta-ink);
}

/* ---------- Responsive nav ---------- */
@media (max-width: 1199px) {
    .neta-header .main-menu__list { display: none; }
    .neta-header .mobile-nav__toggler { color: var(--neta-primary); font-size: 22px; }
    .neta-header .main-menu__btn-box { display: none; }
}

/* Mobile nav list rendering */
.mobile-nav__container ul,
.mobile-nav__container li { list-style: none; padding: 0; margin: 0; }

.mobile-nav__content .main-menu__list > li:not(:last-child),
.mobile-nav__content .main-menu__list > li > ul > li:not(:last-child),
.mobile-nav__content .main-menu__list > li > ul > li > ul > li:not(:last-child) {
    border-bottom: 1px solid var(--neta-line);
}

.mobile-nav__content .main-menu__list > li > ul,
.mobile-nav__content .main-menu__list > li > ul > li > ul {
    background: #f7faff;
    border-top: 1px solid var(--neta-line);
    margin-left: 0;
    padding-left: 14px;
}

.mobile-nav__content .main-menu__list > li > a,
.mobile-nav__content .main-menu__list > li > ul > li > a,
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > a {
    color: var(--neta-ink);
    font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
    font-size: 15px;
    font-weight: 600;
    height: auto;
    min-height: 54px;
    line-height: 1.4;
    padding: 14px 0;
}

.mobile-nav__content .main-menu__list > li > ul > li > a,
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > a {
    color: var(--neta-muted);
    font-size: 14px;
    font-weight: 500;
}

.mobile-nav__content .main-menu__list li a.expanded {
    color: var(--neta-accent);
}

.mobile-nav__content .main-menu__list > li > a > button,
.mobile-nav__content .main-menu__list > li > ul > li > a > button,
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > a > button {
    width: 34px;
    height: 34px;
    background: var(--neta-accent);
    border-radius: 10px;
    color: #fff;
    flex: 0 0 34px;
}

.mobile-nav__content .main-menu__list > li > a > button.expanded,
.mobile-nav__content .main-menu__list > li > ul > li > a > button.expanded,
.mobile-nav__content .main-menu__list > li > ul > li > ul > li > a > button.expanded {
    background: var(--neta-primary);
    color: #fff;
}

.mobile-nav__contact {
    border-top: 1px solid var(--neta-line);
    padding-top: 18px;
}

.mobile-nav__contact li > i {
    color: var(--neta-accent);
}

/* ---------- Misc ---------- */
.section-title.text-center .section-title__tagline,
.section-title.text-center .section-title__title { text-align: center; }
.neta-section .section-title:not(.text-center) { text-align: left; }

.neta-page-header + .neta-section,
.neta-page-header + section { padding-top: 80px; }

img { max-width: 100%; height: auto; }

/* =============================
   NETA — Polish layer (round 2)
   Accessibility, polish, mobile, reduced-motion.
   ============================= */

/* SVG icon container — used inside service-card icons and inline */
.neta-service-card__icon svg,
.neta-icon svg {
    width: 28px;
    height: 28px;
    stroke: #fff;
}
.neta-service-card__icon { display: inline-flex; align-items: center; justify-content: center; }

.neta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    color: var(--neta-accent);
}
.neta-icon svg { width: 22px; height: 22px; stroke: currentColor; }

/* Industry icon */
.neta-industry { padding-top: 28px; }
.neta-industry::before { display: none; }
.neta-industry__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(31,111,235,0.12), rgba(56,182,255,0.12));
    color: var(--neta-accent);
    margin-bottom: 14px;
    transition: background .25s ease, transform .25s ease;
}
.neta-industry__icon svg { width: 22px; height: 22px; stroke: currentColor; }
.neta-industry:hover .neta-industry__icon {
    background: linear-gradient(135deg, var(--neta-accent), var(--neta-accent-2));
    color: #fff;
    transform: scale(1.05);
}

/* Cursor pointer on linked / actionable cards */
.neta-service-card,
.neta-tile,
.neta-step,
.neta-industry,
.neta-project,
.neta-article,
.neta-pillar-card { cursor: default; }
.neta-service-card a,
.neta-article,
.neta-link { cursor: pointer; }

/* ---------- Focus rings (a11y) — soft ring via box-shadow to avoid harsh boxes ---------- */
:focus { outline: none; }
:focus-visible {
    outline: 2px solid rgba(31, 111, 235, 0.65);
    outline-offset: 2px;
    border-radius: 6px;
}
.thm-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(31, 111, 235, 0.30), 0 12px 28px rgba(31, 111, 235, 0.25);
}

/* ---------- Kill any underline on NETA anchors across all states ---------- */
.neta-header a,
.neta-footer a,
.neta-link,
.neta-article,
.neta-service-card a,
.neta-cta a,
.neta-hero a,
.neta-trust a,
.thm-btn,
.neta-page-header a,
.mobile-nav__container a,
.mobile-nav__contact a,
.neta-breadcrumb a,
.neta-pillar-card a,
.neta-tile a,
.neta-project a,
.neta-step a {
    text-decoration: none !important;
}
.neta-header a:hover,
.neta-footer a:hover,
.neta-link:hover,
.neta-article:hover,
.neta-service-card a:hover,
.neta-cta a:hover,
.neta-hero a:hover,
.neta-trust a:hover,
.thm-btn:hover,
.neta-page-header a:hover,
.mobile-nav__container a:hover,
.mobile-nav__contact a:hover,
.neta-breadcrumb a:hover,
.neta-pillar-card a:hover,
.neta-tile a:hover,
.neta-project a:hover,
.neta-step a:hover { text-decoration: none !important; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
    }
    [data-aos] { opacity: 1 !important; transform: none !important; }
    .rotate-me, .zoominout, .float-bob-x, .float-bob-y { animation: none !important; }
}

/* ---------- Trust strip (above What We Deliver) ---------- */
.neta-trust {
    background: #fff;
    border-bottom: 1px solid var(--neta-line);
    padding: 28px 0;
}
.neta-trust__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 18px 24px;
}
.neta-trust__label {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--neta-muted);
    font-weight: 700;
}
.neta-trust__items {
    display: flex; flex-wrap: wrap; gap: 12px 28px;
    list-style: none; padding: 0; margin: 0;
}
.neta-trust__items li {
    display: flex; align-items: center; gap: 8px;
    color: var(--neta-ink); font-size: 14px; font-weight: 500;
}
.neta-trust__items li svg { width: 18px; height: 18px; stroke: var(--neta-accent); }

/* ---------- Mobile spacing tweaks ---------- */
@media (max-width: 767px) {
    .neta-section { padding: 60px 0; }
    .neta-hero { padding: 90px 0 70px; }
    .neta-hero__title { font-size: clamp(28px, 8vw, 40px); }
    .neta-hero__subtitle { font-size: 16px; }
    .neta-hero__btns { flex-direction: column; align-items: stretch; }
    .neta-hero__btns .thm-btn { justify-content: center; }
    .neta-cta__inner h2 { font-size: clamp(22px, 6vw, 28px); }
    .neta-cta__btns .thm-btn { width: 100%; justify-content: center; }
    .section-title { margin-bottom: 32px; }
    .neta-page-header { padding: 70px 0 50px; }
    .neta-page-header h1 { font-size: clamp(26px, 7vw, 36px); }
}

/* ---------- Tablet header dropdown overflow guard ---------- */
@media (min-width: 1200px) and (max-width: 1399px) {
    .neta-header .main-menu__list > li > a { padding: 28px 10px; font-size: 14px; }
}

/* ---------- Service card hover: clickable visual ---------- */
.neta-service-card:hover h3 a { color: var(--neta-accent); }

/* ---------- Smooth scroll anchor offset (sticky header) ---------- */
:target { scroll-margin-top: 90px; }

/* ---------- Footer social row polish ---------- */
.neta-footer .site-footer-two__social a {
    border: 1px solid rgba(255,255,255,0.10);
}

/* ---------- Form: nicer placeholder & native cursor ---------- */
.neta-form input::placeholder,
.neta-form textarea::placeholder { color: #9aa6b6; }
.neta-form button[type="submit"] { cursor: pointer; }

/* ---------- Selection ---------- */
::selection { background: rgba(31,111,235,0.20); color: var(--neta-primary); }

/* ---------- Page header — soften on mobile ---------- */
.neta-page-header__lead { max-width: 720px; }

/* ---------- Hero CTA primacy ---------- */
.neta-hero .thm-btn { box-shadow: 0 14px 30px rgba(31,111,235,0.35); }
.neta-hero .thm-btn--alt { box-shadow: none; }

/* ---------- Print friendly (just the basics) ---------- */
@media print {
    .neta-header, .neta-footer, .neta-cta, .scroll-to-top, .mobile-nav__wrapper { display: none !important; }
    .neta-section { padding: 20px 0; }
    body { color: #000; background: #fff; }
}

/* =============================
   NETA — Imagery layer
   ============================= */

/* Hero side diagram */
.neta-hero { position: relative; }
.neta-hero__visual {
    position: absolute;
    top: 50%;
    right: 28px;
    transform: translateY(-50%);
    width: 620px;
    max-width: 55%;
    pointer-events: none;
    opacity: .95;
    filter: drop-shadow(0 30px 60px rgba(0,0,0,0.45));
}
@media (max-width: 1199px) {
    .neta-hero__visual { display: none; }
}
.neta-hero .container { position: relative; z-index: 2; }

/* Section media + figure */
.neta-figure {
    position: relative;
    border-radius: var(--neta-radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, #0b1a2e, #14365e);
    box-shadow: 0 24px 60px rgba(11, 37, 64, 0.18);
}
.neta-figure img,
.neta-figure svg {
    display: block;
    width: 100%;
    height: auto;
}
.neta-figure--bordered {
    box-shadow: 0 24px 60px rgba(11, 37, 64, 0.20);
    outline: 1px solid rgba(56, 182, 255, 0.20);
    outline-offset: -1px;
}

/* Project / Insight cover image */
.neta-project,
.neta-article {
    overflow: hidden;
    padding: 0;
}
.neta-project__cover,
.neta-article__cover {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-bottom: 1px solid var(--neta-line);
    background: linear-gradient(135deg, #0b1a2e, #14365e);
}
.neta-project__cover img,
.neta-article__cover img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.neta-project:hover .neta-project__cover img,
.neta-article:hover .neta-article__cover img { transform: scale(1.04); }
.neta-project__body { padding: 26px 28px 30px; }
.neta-article__body { padding: 22px 24px 26px; }

/* Adjust existing project/article internals to live inside __body */
.neta-project__body .neta-project__tag,
.neta-project__body h3,
.neta-project__body p { margin-left: 0; }

/* Page header with subtle pattern overlay */
.neta-page-header__visual {
    position: absolute;
    top: 50%;
    right: -10%;
    transform: translateY(-50%);
    width: 420px;
    max-width: 40%;
    opacity: .85;
    pointer-events: none;
}
@media (max-width: 991px) {
    .neta-page-header__visual { display: none; }
}

/* Two-column "feature with image" block */
.neta-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.neta-feature--reverse .neta-feature__media { order: 2; }
.neta-feature__media .neta-figure { width: 100%; }
@media (max-width: 991px) {
    .neta-feature { grid-template-columns: 1fr; gap: 32px; }
    .neta-feature--reverse .neta-feature__media { order: 0; }
}

/* CTA visual frame */
.neta-cta { position: relative; overflow: hidden; }
.neta-cta__bg {
    position: absolute; inset: 0;
    background-image: url("../images/neta/world-map.svg");
    background-repeat: no-repeat;
    background-position: center right;
    background-size: contain;
    opacity: .12;
    pointer-events: none;
}


/* =========================================================
   NETA FINAL VISUAL FIX — spacing + contrast stability
   Fixes cards touching each other and dark text on dark backgrounds.
   ========================================================= */

/* 1) Reliable vertical and horizontal spacing for card grids */
.neta-section .row {
    row-gap: 32px;
}

.neta-section .row > [class*="col-"] {
    display: flex;
    flex-direction: column;
}

.neta-section .row > [class*="col-"] > .neta-service-card,
.neta-section .row > [class*="col-"] > .neta-tile,
.neta-section .row > [class*="col-"] > .neta-step,
.neta-section .row > [class*="col-"] > .neta-industry,
.neta-section .row > [class*="col-"] > .neta-project,
.neta-section .row > [class*="col-"] > .neta-article,
.neta-section .row > [class*="col-"] > .neta-pillar-card {
    width: 100%;
    margin-bottom: 0;
}

/* 2) Keep normal sections light and readable, regardless of browser/OS dark mode */
.neta-section:not(.neta-section--dark):not(.neta-cta),
.neta-section--alt {
    color: var(--neta-ink);
}

.neta-section:not(.neta-section--dark) .section-title__title,
.neta-section:not(.neta-section--dark) h1,
.neta-section:not(.neta-section--dark) h2,
.neta-section:not(.neta-section--dark) h3,
.neta-section:not(.neta-section--dark) h4,
.neta-section:not(.neta-section--dark) h5,
.neta-section:not(.neta-section--dark) h6 {
    color: var(--neta-primary);
}

.neta-section:not(.neta-section--dark) p,
.neta-section:not(.neta-section--dark) .neta-section__lead,
.neta-section:not(.neta-section--dark) .neta-service-card p,
.neta-section:not(.neta-section--dark) .neta-tile p,
.neta-section:not(.neta-section--dark) .neta-industry p,
.neta-section:not(.neta-section--dark) .neta-project p {
    color: var(--neta-muted);
}

/* 3) Explicit dark sections: light text only */
.neta-section--dark .section-title__title,
.neta-section--dark h1,
.neta-section--dark h2,
.neta-section--dark h3,
.neta-section--dark h4,
.neta-section--dark h5,
.neta-section--dark h6 {
    color: #ffffff;
}

.neta-section--dark p,
.neta-section--dark .neta-section__lead,
.neta-section--dark .neta-section__lead--light {
    color: #c8d4e5;
}

/* 4) Dark tiles/cards used inside dark sections */
.neta-section--dark .neta-tile--dark,
.neta-section--dark .neta-service-card {
    background: rgba(255, 255, 255, 0.055);
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: none;
}

.neta-section--dark .neta-tile--dark h3,
.neta-section--dark .neta-tile--dark h4,
.neta-section--dark .neta-service-card h3,
.neta-section--dark .neta-service-card h3 a {
    color: #ffffff;
}

.neta-section--dark .neta-tile--dark p,
.neta-section--dark .neta-service-card p {
    color: #d4deec;
}

/* 5) Project cards with image covers need readable body text even if placed on dark backgrounds */
.neta-project__body h3,
.neta-project__body h3 a {
    color: inherit;
}

/* 6) Better card sizing and breathing room */
.neta-service-card,
.neta-tile,
.neta-industry,
.neta-project {
    min-height: 100%;
}

.neta-service-card {
    padding: 36px 30px;
}

.neta-tile {
    padding: 30px 28px;
}

.neta-industry {
    padding: 30px 28px;
}

.neta-project__body {
    padding: 28px 30px 30px;
}

/* 7) Mobile spacing */
@media (max-width: 767px) {
    .neta-section .row { row-gap: 22px; }
    .neta-service-card,
    .neta-tile,
    .neta-industry,
    .neta-project__body {
        padding: 24px 20px;
    }
}
