/* =============================================================
   EURASIA HOLDING — main.css
   Custom styles layered on top of Bootstrap 5.3
   ============================================================= */

:root {
    --eh-primary: #0b2a4a;
    --eh-primary-600: #0e355c;
    --eh-primary-700: #082040;
    --eh-accent: #c8a45c;
    --eh-accent-600: #b48e45;
    --eh-bg: #ffffff;
    --eh-bg-soft: #f5f7fb;
    --eh-border: #e6eaf1;
    --eh-text: #1a2336;
    --eh-text-muted: #5b6678;

    /* Bootstrap overrides */
    --bs-primary: var(--eh-primary);
    --bs-primary-rgb: 11, 42, 74;
    --bs-link-color: var(--eh-primary);
    --bs-link-hover-color: var(--eh-primary-600);
}

html,
body {
    height: 100%;
}

body {
    font-family: 'Inter', 'Noto Sans Armenian', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    color: var(--eh-text);
    background: var(--eh-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

:lang(hy) {
    font-family: 'Noto Sans Armenian', 'Inter', system-ui, sans-serif;
}

h1, h2, h3, h4, h5, h6,
.eh-brand-text,
.eh-footer-brand {
    font-weight: 700;
    letter-spacing: -0.01em;
}

a {
    text-decoration: none;
}

/* =============================
   Skip link (a11y)
   ============================= */
.skip-link {
    position: absolute;
    left: 0;
    top: 0;
    margin: 8px;
    padding: 8px 12px;
    background: var(--eh-primary);
    color: #fff;
    border-radius: 6px;
    z-index: 1100;
}

/* =============================
   Navbar
   ============================= */
.eh-navbar {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: saturate(180%) blur(10px);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid var(--eh-border);
    min-height: 80px;
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
    transition: box-shadow 0.2s ease, min-height 0.2s ease;
}

.eh-navbar .container {
    gap: 1rem;
}

.eh-navbar.eh-navbar--scrolled {
    box-shadow: 0 6px 20px rgba(11, 42, 74, 0.08);
}

.eh-navbar .navbar-brand {
    color: var(--eh-primary);
    padding-right: 0.25rem;
    margin-right: 0;
}

.eh-logo {
    display: block;
    border-radius: 8px;
}

.eh-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.eh-brand-line1 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--eh-primary);
    letter-spacing: 0.02em;
}

.eh-brand-line2 {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--eh-accent);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-top: 3px;
}

/* Nav items — SaaS style: no icons, animated underline on hover/active */
.eh-navbar .navbar-nav {
    gap: 0.15rem;
}

.eh-navbar .nav-link {
    color: var(--eh-text);
    font-weight: 500;
    font-size: 0.92rem;
    letter-spacing: 0.005em;
    padding: 0.6rem 0.85rem;
    border-radius: 0;
    background: transparent !important;
    position: relative;
    white-space: nowrap;
    transition: color 0.15s ease;
}

.eh-navbar .nav-link::after {
    content: "";
    position: absolute;
    left: 0.85rem;
    right: 0.85rem;
    bottom: 0.35rem;
    height: 2px;
    background: var(--eh-accent);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.22s ease;
}

.eh-navbar .nav-link:hover,
.eh-navbar .nav-link:focus {
    color: var(--eh-primary);
}

.eh-navbar .nav-link.active {
    color: var(--eh-primary);
    font-weight: 600;
}

.eh-navbar .nav-link:hover::after,
.eh-navbar .nav-link:focus-visible::after,
.eh-navbar .nav-link.active::after {
    transform: scaleX(1);
}

.eh-navbar .navbar-toggler {
    border: 1px solid var(--eh-border);
    padding: 0.35rem 0.6rem;
}

.eh-navbar .navbar-toggler:focus {
    box-shadow: 0 0 0 0.15rem rgba(11, 42, 74, 0.15);
}

/* Right-side actions block */
.eh-navbar-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

@media (min-width: 992px) {
    .eh-navbar-actions {
        margin-left: 0.75rem;
        padding-left: 1.25rem;
        border-left: 1px solid var(--eh-border);
    }
}

/* Shared flag container (used by lang trigger + dropdown items) */
.eh-flag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 3px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

.eh-flag svg {
    width: 100%;
    height: 100%;
    display: block;
}

.eh-flag--sm { width: 22px; height: 15px; }
.eh-flag--xs { width: 20px; height: 14px; }

/* Language switcher — minimal dropdown trigger (not a button) */
.eh-lang-switcher {
    position: relative;
}

.eh-lang-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: transparent;
    border: none;
    padding: 0.4rem 0.55rem;
    border-radius: 8px;
    color: var(--eh-text);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.eh-lang-trigger:hover,
.eh-lang-trigger:focus-visible,
.eh-lang-trigger[aria-expanded="true"] {
    background: var(--eh-bg-soft);
    color: var(--eh-primary);
    outline: none;
}

.eh-lang-trigger__code {
    line-height: 1;
}

.eh-lang-trigger__caret {
    font-size: 0.7rem;
    color: var(--eh-text-muted);
    transition: transform 0.2s ease;
    line-height: 1;
}

.eh-lang-trigger[aria-expanded="true"] .eh-lang-trigger__caret {
    transform: rotate(180deg);
}

/* Dropdown menu */
.eh-lang-menu {
    min-width: 190px;
    padding: 0.35rem;
    border: 1px solid var(--eh-border);
    border-radius: 12px;
    box-shadow: 0 14px 34px rgba(11, 42, 74, 0.14);
    margin-top: 0.5rem !important;
}

.eh-lang-item.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.55rem 0.7rem;
    border-radius: 8px;
    color: var(--eh-text);
    font-size: 0.93rem;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.eh-lang-item.dropdown-item:hover,
.eh-lang-item.dropdown-item:focus {
    background: var(--eh-bg-soft);
    color: var(--eh-primary);
}

.eh-lang-item.dropdown-item.active,
.eh-lang-item.dropdown-item:active {
    background: rgba(11, 42, 74, 0.08);
    color: var(--eh-primary);
    font-weight: 600;
}

.eh-lang-item__name {
    flex-grow: 1;
}

.eh-lang-item__check {
    color: var(--eh-accent-600);
    font-size: 1.1rem;
}

/* B2B button */
.eh-btn-b2b {
    background: var(--eh-primary);
    border-color: var(--eh-primary);
    font-weight: 600;
    font-size: 0.92rem;
    padding: 0.55rem 1.1rem;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(11, 42, 74, 0.18);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.eh-btn-b2b:hover,
.eh-btn-b2b:focus {
    background: var(--eh-primary-600);
    border-color: var(--eh-primary-600);
    box-shadow: 0 10px 24px rgba(11, 42, 74, 0.25);
    transform: translateY(-1px);
}

/* =============================
   Hero
   ============================= */
.eh-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
    isolation: isolate;
    background-color: var(--eh-primary-700);
}

.eh-hero__bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(1200px 500px at 10% 10%, rgba(200, 164, 92, 0.25), transparent 60%),
        radial-gradient(900px 600px at 90% 90%, rgba(11, 42, 74, 0.4), transparent 60%),
        linear-gradient(135deg, #0b2a4a 0%, #123a66 50%, #0b2a4a 100%);
    background-size: cover;
    background-position: center;
}

/* If user drops an image into assets/img/hero/hero-1.jpg, uncomment
   or add a class 'has-image' with the following (see README). */
.eh-hero.has-image .eh-hero__bg {
    background-image:
        linear-gradient(135deg, rgba(8, 32, 64, 0.82) 0%, rgba(8, 32, 64, 0.55) 100%),
        url('../img/hero/hero-1.jpg');
    background-size: cover;
    background-position: center;
}

.eh-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(8, 32, 64, 0) 0%, rgba(8, 32, 64, 0.35) 100%);
}

.eh-hero__inner {
    padding: 6rem 0 5rem;
    max-width: 820px;
}

.eh-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--eh-accent);
    margin-bottom: 1rem;
    padding: 0.35rem 0.75rem;
    background: rgba(200, 164, 92, 0.12);
    border: 1px solid rgba(200, 164, 92, 0.35);
    border-radius: 999px;
}

.eh-hero h1 {
    font-size: clamp(2rem, 4vw + 0.5rem, 3.4rem);
    line-height: 1.1;
    margin-bottom: 1.25rem;
    text-wrap: balance;
}

.eh-hero p.lead {
    font-size: clamp(1rem, 0.6vw + 0.85rem, 1.2rem);
    color: rgba(255, 255, 255, 0.88);
    max-width: 680px;
}

.eh-hero .btn {
    padding: 0.7rem 1.4rem;
    font-weight: 600;
}

.eh-hero .btn-light {
    color: var(--eh-primary);
}

.eh-hero .btn-outline-light:hover {
    color: var(--eh-primary);
}

/* =============================
   Sections
   ============================= */
.eh-section {
    padding: 5rem 0;
}

.eh-section--alt {
    background: var(--eh-bg-soft);
}

.eh-section__eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--eh-accent-600);
    margin-bottom: 0.75rem;
}

.eh-section__title {
    font-size: clamp(1.6rem, 1.4vw + 1.2rem, 2.4rem);
    margin-bottom: 1rem;
    text-wrap: balance;
}

.eh-section__subtitle {
    color: var(--eh-text-muted);
    max-width: 720px;
    margin-bottom: 2.5rem;
}

/* =============================
   Feature cards (about preview)
   ============================= */
.eh-feature {
    height: 100%;
    padding: 1.5rem;
    border: 1px solid var(--eh-border);
    border-radius: 14px;
    background: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.eh-feature:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(11, 42, 74, 0.08);
    border-color: rgba(11, 42, 74, 0.18);
}

.eh-feature__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(11, 42, 74, 0.08);
    color: var(--eh-primary);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.eh-feature h3 {
    font-size: 1.1rem;
    margin-bottom: 0.35rem;
}

.eh-feature p {
    color: var(--eh-text-muted);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* =============================
   Direction cards
   ============================= */
.eh-direction {
    height: 100%;
    padding: 1.75rem 1.5rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--eh-border);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
}

.eh-direction::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: linear-gradient(90deg, var(--eh-primary) 0%, var(--eh-accent) 100%);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.eh-direction:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(11, 42, 74, 0.1);
}

.eh-direction:hover::before {
    opacity: 1;
}

.eh-direction__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(11, 42, 74, 0.1) 0%, rgba(200, 164, 92, 0.14) 100%);
    color: var(--eh-primary);
    font-size: 1.6rem;
    margin-bottom: 1.1rem;
}

.eh-direction h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.eh-direction p {
    color: var(--eh-text-muted);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* =============================
   CTA band
   ============================= */
.eh-cta {
    background: linear-gradient(135deg, var(--eh-primary) 0%, var(--eh-primary-600) 100%);
    color: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
}

.eh-cta::before {
    content: "";
    position: absolute;
    right: -80px;
    top: -80px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(closest-side, rgba(200, 164, 92, 0.25), transparent);
}

.eh-cta h2 {
    font-size: clamp(1.4rem, 1vw + 1.1rem, 2rem);
    margin-bottom: 0.5rem;
}

.eh-cta p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
    max-width: 560px;
}

.eh-cta .btn-light {
    color: var(--eh-primary);
    font-weight: 600;
    padding: 0.7rem 1.4rem;
}

/* =============================
   Careers teaser
   ============================= */
.eh-careers {
    padding: 2rem;
    border-radius: 16px;
    border: 1px dashed var(--eh-border);
    background: #fff;
}

.eh-careers__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 164, 92, 0.15);
    color: var(--eh-accent-600);
    font-size: 1.6rem;
}

/* =============================
   Footer
   ============================= */
.eh-footer {
    background: var(--eh-primary-700);
    color: rgba(255, 255, 255, 0.82);
    margin-top: 4rem;
}

.eh-footer-brand {
    color: #fff;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
}

.eh-footer-text {
    color: rgba(255, 255, 255, 0.7);
    max-width: 420px;
}

.eh-footer-title {
    color: #fff;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 1rem;
}

.eh-footer-links {
    margin: 0;
    padding: 0;
}

.eh-footer-links li + li {
    margin-top: 0.35rem;
}

.eh-footer-links a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    transition: color 0.15s ease;
}

.eh-footer-links a:hover {
    color: var(--eh-accent);
}

.eh-footer-langs a.active {
    color: var(--eh-accent);
    font-weight: 600;
}

.eh-footer-divider {
    border-color: rgba(255, 255, 255, 0.12);
    margin: 2rem 0 1.25rem;
}

.eh-footer-copy {
    color: rgba(255, 255, 255, 0.6);
}

.eh-footer-b2b {
    color: #fff;
    font-weight: 600;
    transition: color 0.15s ease;
}

.eh-footer-b2b:hover {
    color: var(--eh-accent);
}

/* =============================
   Page hero (inner pages)
   ============================= */
.eh-page-hero {
    position: relative;
    padding: 5rem 0 3.5rem;
    background:
        radial-gradient(900px 420px at 85% 15%, rgba(200, 164, 92, 0.18), transparent 60%),
        radial-gradient(700px 500px at 10% 90%, rgba(255, 255, 255, 0.08), transparent 60%),
        linear-gradient(135deg, var(--eh-primary-700) 0%, var(--eh-primary) 55%, #123a66 100%);
    color: #fff;
    overflow: hidden;
    isolation: isolate;
}

.eh-page-hero > .container {
    position: relative;
    z-index: 2;
}

.eh-page-hero .eh-eyebrow {
    color: var(--eh-accent);
    background: rgba(200, 164, 92, 0.12);
    border-color: rgba(200, 164, 92, 0.35);
}

.eh-page-hero__title {
    font-size: clamp(1.8rem, 2.5vw + 1rem, 3rem);
    line-height: 1.1;
    margin: 0.75rem 0 1rem;
    text-wrap: balance;
    max-width: 900px;
}

.eh-page-hero__lead {
    font-size: clamp(1rem, 0.5vw + 0.9rem, 1.15rem);
    color: rgba(255, 255, 255, 0.88);
    max-width: 780px;
    margin-bottom: 0;
}

/* Error hero — centered copy with a huge translucent status code */
.eh-error-hero {
    padding: 5rem 0 4.5rem;
    text-align: center;
}

.eh-error-hero .eh-eyebrow {
    margin: 0 auto 1rem;
}

.eh-error-hero .eh-page-hero__title,
.eh-error-hero .eh-page-hero__lead {
    margin-left: auto;
    margin-right: auto;
}

.eh-error-code {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: clamp(5.5rem, 14vw + 2rem, 11rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.04em;
    color: transparent;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(200, 164, 92, 0.45) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    margin-bottom: 0.25rem;
    text-shadow: 0 4px 28px rgba(200, 164, 92, 0.15);
    font-variant-numeric: tabular-nums;
    user-select: none;
}

/* Animated particles (injected by main.js into every .eh-page-hero) */
.eh-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.eh-particles span {
    position: absolute;
    display: block;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.35);
    opacity: 0;
    animation-name: eh-float;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.eh-particles span:nth-child(odd) {
    background: rgba(200, 164, 92, 0.9);
    box-shadow: 0 0 14px rgba(200, 164, 92, 0.45);
}

@keyframes eh-float {
    0% {
        transform: translate3d(0, 20px, 0) scale(0.6);
        opacity: 0;
    }
    15% {
        opacity: 0.75;
    }
    50% {
        transform: translate3d(18px, -28px, 0) scale(1);
        opacity: 0.9;
    }
    85% {
        opacity: 0.5;
    }
    100% {
        transform: translate3d(-6px, -70px, 0) scale(0.7);
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .eh-particles span {
        animation: none;
        opacity: 0.35;
    }
}

/* =============================
   Typography helpers
   ============================= */
.eh-lead-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--eh-text);
}

.eh-lead-text + .eh-lead-text {
    margin-top: 1rem;
}

/* =============================
   Geo cards (About)
   ============================= */
.eh-geo {
    height: 100%;
    background: #fff;
    border: 1px solid var(--eh-border);
    border-radius: 16px;
    padding: 1.75rem;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.eh-geo:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(11, 42, 74, 0.1);
    border-color: rgba(11, 42, 74, 0.2);
}

.eh-geo__icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(11, 42, 74, 0.08);
    color: var(--eh-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.eh-geo__role {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--eh-accent-600);
    margin-bottom: 0.35rem;
}

.eh-geo__title {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.eh-geo__text {
    color: var(--eh-text-muted);
    margin-bottom: 0;
}

/* Larger direction cards on About page */
.eh-direction--lg {
    padding: 2rem;
}

.eh-direction--lg h3 {
    font-size: 1.25rem;
}

/* Bigger feature card variant (Careers benefits) */
.eh-feature--lg {
    padding: 1.75rem;
}

.eh-feature--lg h3 {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
}

/* =============================
   Stats
   ============================= */
.eh-stat {
    text-align: center;
    padding: 1.25rem 0.75rem;
    border-radius: 14px;
    background: #fff;
    border: 1px solid var(--eh-border);
    height: 100%;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.eh-stat:hover {
    transform: translateY(-2px);
    border-color: rgba(200, 164, 92, 0.5);
}

.eh-stat__value {
    font-size: clamp(1.4rem, 1vw + 1rem, 1.8rem);
    font-weight: 700;
    color: var(--eh-primary);
    line-height: 1;
}

.eh-stat__label {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--eh-text-muted);
    line-height: 1.35;
}

/* =============================
   Services page — big service blocks
   ============================= */
.eh-service-block {
    padding: 2.25rem 0;
    border-top: 1px solid var(--eh-border);
}

.eh-service-block:first-of-type {
    border-top: none;
    padding-top: 0;
}

.eh-service-block__head {
    position: sticky;
    top: 96px;
}

.eh-service-block__num {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--eh-accent-600);
    margin-bottom: 0.5rem;
}

.eh-service-block__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(11, 42, 74, 0.1) 0%, rgba(200, 164, 92, 0.14) 100%);
    color: var(--eh-primary);
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.eh-service-block__title {
    font-size: 1.4rem;
    margin-bottom: 0;
    text-wrap: balance;
}

.eh-service-block__text {
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--eh-text);
    margin-bottom: 1.25rem;
}

.eh-service-block__adv {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem 1.5rem;
    margin: 0;
}

.eh-service-block__adv li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: var(--eh-text);
    font-size: 0.98rem;
}

.eh-service-block__adv li i {
    color: var(--eh-accent-600);
    font-size: 1.15rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

/* =============================
   Products
   ============================= */
.eh-product {
    height: 100%;
    padding: 1.5rem;
    background: #fff;
    border: 1px solid var(--eh-border);
    border-radius: 14px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    display: flex;
    flex-direction: column;
}

.eh-product:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(11, 42, 74, 0.08);
    border-color: rgba(11, 42, 74, 0.2);
}

.eh-product__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(11, 42, 74, 0.08);
    color: var(--eh-primary);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.eh-product__title {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.eh-product__text {
    color: var(--eh-text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.eh-product__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.eh-product__chips li {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--eh-primary);
    background: rgba(11, 42, 74, 0.08);
    border: 1px solid rgba(11, 42, 74, 0.1);
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
}

/* Cert items */
.eh-cert {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: #fff;
    border: 1px solid var(--eh-border);
    border-radius: 12px;
    height: 100%;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.eh-cert:hover {
    border-color: rgba(200, 164, 92, 0.6);
    transform: translateY(-1px);
}

.eh-cert i {
    color: var(--eh-accent-600);
    font-size: 1.4rem;
    flex-shrink: 0;
}

.eh-cert span {
    font-weight: 500;
    color: var(--eh-text);
    font-size: 0.95rem;
    line-height: 1.4;
}

/* =============================
   Bullet list (Careers culture)
   ============================= */
.eh-bullet-list {
    margin: 0;
}

.eh-bullet-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.85rem 0;
    border-bottom: 1px dashed var(--eh-border);
    font-size: 1rem;
    color: var(--eh-text);
    line-height: 1.55;
}

.eh-bullet-list li:last-child {
    border-bottom: none;
}

.eh-bullet-list__dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--eh-primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

/* =============================
   Vacancy card (Careers)
   ============================= */
.eh-vacancy {
    height: 100%;
    background: #fff;
    border: 1px solid var(--eh-border);
    border-radius: 16px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    position: relative;
}

.eh-vacancy::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    border-radius: 16px 16px 0 0;
    background: linear-gradient(90deg, var(--eh-primary) 0%, var(--eh-accent) 100%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.eh-vacancy:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(11, 42, 74, 0.1);
    border-color: rgba(11, 42, 74, 0.2);
}

.eh-vacancy:hover::before {
    opacity: 1;
}

.eh-vacancy__head {
    margin-bottom: 1rem;
}

.eh-vacancy__title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.eh-vacancy__loc {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.88rem;
    color: var(--eh-text-muted);
    background: var(--eh-bg-soft);
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
}

.eh-vacancy__text {
    color: var(--eh-text);
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.eh-vacancy__req {
    margin: 0 0 1.25rem;
    flex-grow: 1;
}

.eh-vacancy__req li {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    color: var(--eh-text-muted);
    font-size: 0.93rem;
    padding: 0.25rem 0;
    line-height: 1.5;
}

.eh-vacancy__req li i {
    color: var(--eh-primary);
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.eh-vacancy__cta {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    border-radius: 10px;
    background: rgba(11, 42, 74, 0.08);
    color: var(--eh-primary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.eh-vacancy__cta:hover {
    background: var(--eh-primary);
    color: #fff;
    transform: translateY(-1px);
}

/* =============================
   Office cards (Contacts)
   ============================= */
.eh-office {
    height: 100%;
    background: #fff;
    border: 1px solid var(--eh-border);
    border-radius: 16px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    position: relative;
}

.eh-office::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    border-radius: 16px 16px 0 0;
    background: linear-gradient(90deg, var(--eh-primary) 0%, var(--eh-accent) 100%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.eh-office:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(11, 42, 74, 0.1);
    border-color: rgba(11, 42, 74, 0.2);
}

.eh-office:hover::before {
    opacity: 1;
}

.eh-office__head {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1.25rem;
}

.eh-office__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(11, 42, 74, 0.1) 0%, rgba(200, 164, 92, 0.14) 100%);
    color: var(--eh-primary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.eh-office__role {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--eh-accent-600);
    margin-bottom: 0.1rem;
}

.eh-office__city {
    font-size: 1.35rem;
    margin: 0;
    color: var(--eh-primary);
}

.eh-office__list {
    margin: 0 0 1.25rem;
    flex-grow: 1;
}

.eh-office__list dt {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--eh-text-muted);
    margin-top: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.eh-office__list dt:first-child {
    margin-top: 0;
}

.eh-office__list dt i {
    color: var(--eh-primary);
    font-size: 0.95rem;
}

.eh-office__list dd {
    margin: 0.3rem 0 0;
    color: var(--eh-text);
    font-size: 0.95rem;
    line-height: 1.5;
}

.eh-office__list dd a {
    color: var(--eh-primary);
    border-bottom: 1px dashed rgba(11, 42, 74, 0.4);
    transition: color 0.15s ease, border-color 0.15s ease;
}

.eh-office__list dd a:hover {
    color: var(--eh-accent-600);
    border-color: var(--eh-accent-600);
}

.eh-office__cta {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    border-radius: 10px;
    background: rgba(11, 42, 74, 0.08);
    color: var(--eh-primary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: background-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.eh-office__cta:hover {
    background: var(--eh-primary);
    color: #fff;
    transform: translateY(-1px);
}

/* =============================
   Contacts sidebar info cards
   ============================= */
.eh-info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: #fff;
    border: 1px solid var(--eh-border);
    border-radius: 14px;
    margin-bottom: 1rem;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.eh-info-card:last-child {
    margin-bottom: 0;
}

.eh-info-card:hover {
    border-color: rgba(11, 42, 74, 0.2);
    transform: translateY(-1px);
}

.eh-info-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(11, 42, 74, 0.08);
    color: var(--eh-primary);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.eh-info-card__title {
    font-size: 1rem;
    margin: 0 0 0.25rem;
    color: var(--eh-primary);
}

.eh-info-card__text {
    color: var(--eh-text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.eh-info-card__text a {
    color: var(--eh-primary);
    border-bottom: 1px dashed rgba(11, 42, 74, 0.4);
}

.eh-info-card__text a:hover {
    color: var(--eh-accent-600);
    border-color: var(--eh-accent-600);
}

/* =============================
   CAPTCHA (Contacts form)
   ============================= */
.eh-captcha {
    display: flex;
    gap: 0.6rem;
    align-items: stretch;
}

.eh-captcha__question {
    flex-shrink: 0;
    min-width: 105px;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.45rem 0.85rem;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(11, 42, 74, 0.08) 0%, rgba(200, 164, 92, 0.14) 100%);
    border: 1px solid rgba(11, 42, 74, 0.12);
    font-weight: 700;
    color: var(--eh-primary);
    font-size: 1.1rem;
    letter-spacing: 0.02em;
    user-select: none;
    font-variant-numeric: tabular-nums;
}

.eh-captcha__question i {
    color: var(--eh-accent-600);
    font-size: 1.1rem;
}

.eh-captcha__input {
    flex-grow: 1;
    min-width: 0;
}

/* =============================
   Form (Careers apply)
   ============================= */
.eh-form .form-label {
    font-weight: 600;
    color: var(--eh-text);
    margin-bottom: 0.4rem;
}

.eh-req {
    color: #c0392b;
    font-weight: 700;
}

.eh-form .form-control {
    border: 1px solid var(--eh-border);
    border-radius: 10px;
    background: #fff;
    padding: 0.7rem 0.9rem;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.eh-form .form-control:focus {
    border-color: var(--eh-primary);
    box-shadow: 0 0 0 0.15rem rgba(11, 42, 74, 0.12);
}

.eh-form__privacy {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: var(--eh-text-muted);
    font-size: 0.88rem;
    line-height: 1.55;
}

.eh-form__privacy i {
    color: var(--eh-accent-600);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

/* =============================
   Responsive
   ============================= */
@media (max-width: 991.98px) {
    .eh-service-block__head {
        position: static;
    }

    .eh-service-block__adv {
        grid-template-columns: 1fr;
    }

    .eh-page-hero {
        padding: 3.5rem 0 2.5rem;
    }

    .eh-navbar {
        min-height: 64px;
    }

    .eh-navbar .navbar-collapse {
        padding: 0.75rem 0;
    }

    .eh-navbar .navbar-nav .nav-link {
        padding: 0.65rem 0.6rem;
    }

    .eh-btn-b2b {
        width: 100%;
        justify-content: center;
        display: inline-flex;
        align-items: center;
    }

    .eh-navbar .nav-link {
        padding: 0.7rem 0.6rem;
        font-size: 0.98rem;
    }

    .eh-navbar .nav-link::after {
        display: none;
    }

    .eh-navbar .nav-link.active {
        background: rgba(11, 42, 74, 0.08) !important;
        border-radius: 8px;
    }

    .eh-navbar-actions {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0.75rem;
        margin-top: 0.75rem;
        padding-top: 0.75rem;
        border-top: 1px solid var(--eh-border);
    }

    .eh-btn-b2b {
        width: auto;
        flex-grow: 1;
    }

    .eh-lang-menu {
        min-width: 180px;
    }

    .eh-hero__inner {
        padding: 4rem 0 3rem;
    }

    .eh-section {
        padding: 3.5rem 0;
    }

    .eh-cta {
        padding: 1.75rem;
        text-align: center;
    }

    .eh-cta .btn {
        width: 100%;
        margin-top: 1rem;
    }
}

@media (max-width: 575.98px) {
    .eh-brand-line1 { font-size: 0.85rem; }
    .eh-brand-line2 { font-size: 0.7rem; }

    .eh-hero {
        min-height: 60vh;
    }

    .eh-hero .btn {
        width: 100%;
    }

    .eh-hero .d-flex.gap-3 {
        flex-direction: column;
    }
}
