/* ==========================================================================
   CSS Variables & Tokens
   ========================================================================== */
:root {
    --color-primary: #0047AB;
    --color-primary-dark: #003380;
    --color-accent: #D4AF37;
    --color-dark: #0B132B;
    --color-dark-surface: #1C2541;
    --color-text: #333333;
    --color-gray: #666666;
    --color-text-muted: #666666;
    --color-light: #F8F9FA;
    --color-white: #FFFFFF;
    --color-border: rgba(0, 0, 0, 0.1);
    --color-border-light: rgba(255, 255, 255, 0.1);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;

    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.7s cubic-bezier(0.16, 1, 0.3, 1);

    --container-width: 1200px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
}

/* ==========================================================================
   Reset & Base
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-y: scroll;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-sm);
    color: var(--color-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

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

.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.text-center { text-align: center; }
.text-accent { color: var(--color-accent); }

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-normal);
    background: transparent;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--color-border);
}

.navbar.scrolled * {
    color: var(--color-dark);
}

.nav-container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 4%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    height: 60px;
    position: relative;
    width: 200px;
}

.logo img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: left center;
    transition: opacity var(--transition-fast);
    position: absolute;
    left: 0;
    top: 0;
}

.logo-black { opacity: 0; }
.logo-gold   { opacity: 1; }

.navbar.scrolled .logo-black { opacity: 1; }
.navbar.scrolled .logo-gold  { opacity: 0; }

/* Nav links */
.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--color-accent);
    transition: width var(--transition-fast);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Dropdown */
.nav-item-dropdown {
    position: relative;
}

.nav-item-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 16px;
}

.nav-item-dropdown > .nav-link {
    padding-right: 16px;
}

.nav-item-dropdown > .nav-link::before {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    opacity: 0.7;
    transition: transform var(--transition-fast);
}

.nav-item-dropdown:hover > .nav-link::before {
    transform: translateY(-50%) rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    min-width: 230px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    padding: 8px 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
    z-index: 200;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid rgba(255, 255, 255, 0.98);
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.dropdown-link {
    display: block;
    padding: 11px 22px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-dark);
    white-space: nowrap;
    border-left: 3px solid transparent;
    transition: color var(--transition-fast), background-color var(--transition-fast),
                border-color var(--transition-fast), padding-left var(--transition-fast);
}

.dropdown-link:hover {
    color: var(--color-accent);
    background-color: #f8f5ec;
    border-left-color: var(--color-accent);
    padding-left: 28px;
    cursor: pointer;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 10px;
    position: relative;
}

.language-switcher::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    height: 15px;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.4);
    transition: var(--transition-fast);
}

.navbar.scrolled .language-switcher::before {
    background-color: rgba(0, 0, 0, 0.2);
}

.lang-link {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
    position: relative;
    padding-bottom: 2px;
    display: inline-block;
}

.lang-link:hover { color: rgba(255, 255, 255, 1); }

.navbar.scrolled .lang-link { color: rgba(0, 0, 0, 0.6); }
.navbar.scrolled .lang-link:hover { color: var(--color-dark); }

.lang-link.active {
    font-weight: 700;
    color: var(--color-white);
}

.navbar.scrolled .lang-link.active { color: var(--color-dark); }

.lang-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width var(--transition-fast);
}

.lang-link:hover::after,
.lang-link.active::after { width: 100%; }

.lang-divider {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

.navbar.scrolled .lang-divider { color: rgba(0, 0, 0, 0.2); }

/* AR language option hidden until needed */
.lang-link:not(.active),
.lang-divider,
.mobile-lang-link:not(.active) { display: none; }

/* Mobile menu button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    width: 30px;
    height: 20px;
    position: relative;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-white);
    position: absolute;
    transition: var(--transition-normal);
}

.navbar.scrolled .mobile-menu-btn span { background-color: var(--color-dark); }

.mobile-menu-btn span:nth-child(1) { top: 0; }
.mobile-menu-btn span:nth-child(2) { top: 9px; }
.mobile-menu-btn span:nth-child(3) { top: 18px; }

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
    background-color: var(--color-dark);
}
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 9px;
    background-color: var(--color-dark);
}

/* Mobile overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-white);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-normal);
    transform: translateY(-10%);
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-dark);
}

.mobile-language-switcher {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 1rem;
}

.mobile-lang-link {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--color-text-muted);
    position: relative;
    padding-bottom: 4px;
}

.mobile-lang-link.active {
    font-weight: 700;
    color: var(--color-dark);
}

.mobile-lang-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-accent);
}

/* Mobile nav accordion for dropdown items */
.mobile-nav-accordion {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}
.mobile-nav-accordion-btn {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-dark);
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
}
.mobile-nav-accordion-arrow {
    font-size: 0.75rem;
    transition: transform 0.25s ease;
    color: var(--color-accent);
}
.mobile-nav-accordion.open .mobile-nav-accordion-arrow {
    transform: rotate(180deg);
}
.mobile-nav-sub {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0;
}
.mobile-nav-accordion.open .mobile-nav-sub {
    max-height: 300px;
    padding: 14px 0 0;
}
.mobile-nav-sub-link {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-muted);
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
}
.mobile-nav-sub-link:hover { color: var(--color-accent); }

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
    position: relative;
    height: calc(100vh - 50px);
    min-height: 600px;
    display: flex;
    align-items: center;
    color: var(--color-white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(11, 19, 43, 0.7) 0%, rgba(11, 19, 43, 0.3) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 5cm;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-title {
    color: var(--color-white);
    font-size: clamp(1.6rem, 2.8vw, 2.4rem);
    letter-spacing: -0.5px;
    margin-bottom: var(--space-md);
    text-align: left;
    font-weight: 400;
}

.hero-subtitle {
    font-size: clamp(0.9rem, 1.5vw, 1.15rem);
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.7;
    opacity: 0.88;
    text-align: left;
}

.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
}

.btn-scroll-down {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 28px;
    min-width: 230px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: var(--color-white);
    transition: var(--transition-normal);
    background: transparent;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
}

.btn-scroll-label {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-scroll-down:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-white);
    transform: translateY(3px);
}

/* ==========================================================================
   Gray Content Section
   ========================================================================== */
.gray-section {
    background-color: #f2f2f2;
    padding: 80px 1.9cm;
    margin: 80px 2.8cm;
    border-radius: var(--radius-md);
    color: var(--color-dark);
}

.gray-section .container {
    max-width: none;
    padding: 0;
}

/* ==========================================================================
   Intro Split (Left tile + divider + accordion)
   ========================================================================== */
.intro-split {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
}

/* Left tile */
.intro-split-tile {
    flex: 0 0 42%;
    background: var(--color-white);
    border-radius: 14px;
    border-left: 3px solid #c4a030;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
    padding: 36px 32px;
}

.intro-split-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.3;
    margin-bottom: 18px;
}

.intro-split-body {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text);
    margin: 0;
}

/* Drop cap override inside left tile */
.intro-drop-cap {
    font-size: 4rem !important;
    color: #c4a030 !important;
}

.intro-split-tile .drop-cap-container {
    height: 3.5rem;
}

/* Logo replacement for drop cap */
.intro-logo-container {
    height: 5rem !important;
    margin-right: 12px;
    margin-top: 2px;
}

.intro-drop-logo {
    display: block;
    height: 100%;
    width: auto;
}

/* Vertical divider */
.intro-split-divider {
    flex: 0 0 1px;
    align-self: stretch;
    background-color: #1a1a1a;
    margin: 0 3rem;
    min-height: 220px;
}

/* Right accordion wrapper */
.intro-split-accordion {
    flex: 1;
}

/* Accordion items */
.accordion-item {
    padding: 24px 0;
}

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    text-align: left;
}

.accordion-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.3;
}

.accordion-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1.5px solid #c4a030;
    color: #c4a030;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    line-height: 1;
    font-weight: 400;
}

.accordion-header[aria-expanded="true"] .accordion-icon {
    transform: rotate(45deg);
    background-color: #c4a030;
    color: var(--color-white);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
}

.accordion-body.open {
    max-height: 200px;
    opacity: 1;
    padding-top: 14px;
}

.accordion-body p {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #555;
    line-height: 1.75;
    margin: 0;
}

.accordion-separator {
    height: 1px;
    background: #e0ddd5;
}

/* Responsive */
@media (max-width: 768px) {
    .intro-split {
        flex-direction: column;
    }
    .intro-split-tile {
        flex: none;
        width: 100%;
    }
    .intro-split-divider {
        width: 100%;
        height: 1px;
        min-height: 0;
        margin: 2rem 0;
        align-self: auto;
    }
}

.intro-highlight {
    font-size: 1.6rem;
    line-height: 1.4;
    color: var(--color-accent);
    font-weight: 400;
}

/* Container floats and creates a 2-line exclusion zone */
.drop-cap-container {
    float: left;
    margin-right: 8px;
    margin-top: 4px;
    height: 4.0rem;
}

/* M is visually small, sits inside the container */
.drop-cap {
    display: block;
    font-size: 5.5rem;
    line-height: 0.75;
    font-weight: 600;
    color: var(--color-accent);
    font-family: var(--font-heading);
}

.intro-right p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

/* Section headings */
.section-heading {
    font-size: 1.4rem;
    font-weight: 700;
    color: #555;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.unified-heading {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    color: #1a1a1a;
}

.heading-ruled {
    display: inline;
    color: #888;
    padding: 3px 0;
    border-top: 1.5px solid var(--color-accent);
    border-bottom: 1.5px solid var(--color-accent);
    line-height: 1.8;
}

.section-subtitle {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 6px;
}

.section-title {
    font-size: clamp(2rem, 3vw, 3rem);
    margin-bottom: var(--space-md);
}

/* ==========================================================================
   Tabs (Built to Operate section)
   ========================================================================== */
.eq-tabs { margin-top: 36px; }

.eq-tab-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.eq-tab-btn {
    flex: 1;
    min-width: 0;
    padding: 16px 20px;
    background: #fff;
    border: 2px solid #e8e8e8;
    border-radius: var(--radius-sm);
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    line-height: 1.35;
    transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
    position: relative;
}

.eq-tab-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-accent);
    border-radius: 0 0 4px 4px;
    opacity: 0;
    transition: opacity 0.2s;
}

.eq-tab-btn:hover {
    border-color: var(--color-accent);
    color: var(--color-dark);
}

.eq-tab-btn.active {
    border-color: var(--color-accent);
    color: var(--color-dark);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.eq-tab-btn.active::after { opacity: 1; }

.eq-panels { margin-top: 20px; }

.eq-panel {
    display: none;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    flex-direction: row;
    align-items: stretch;
    animation: eqFadeIn 0.35s ease;
    height: 340px;
}

.eq-panel.active { display: flex; }

@keyframes eqFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.eq-panel-img {
    flex: 0 0 42%;
    overflow: hidden;
    padding: 16px 0 16px 16px;
    box-sizing: border-box;
}

.eq-panel-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    border-radius: 8px;
}

.eq-panel-body {
    flex: 1;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eq-panel-body h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    position: relative;
    padding-left: 16px;
}

.eq-panel-body h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    bottom: 2px;
    width: 4px;
    background: var(--color-accent);
    border-radius: 2px;
}

.eq-panel-body p {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin: 0;
}

/* ==========================================================================
   Strategy Grid
   ========================================================================== */
/* ── Market Experience Feature Banner ─────────────────────────────────── */
.meo-feature-section { margin-top: 80px; }

.meo-feature-card {
    display: flex;
    align-items: stretch;
    background: var(--color-dark);
    overflow: hidden;
    border-radius: var(--radius-sm);
    min-height: 250px;
    text-decoration: none;
    position: relative;
    border-bottom: 5px solid var(--color-accent);
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.meo-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 44px rgba(0,0,0,0.28);
}

.meo-feature-content {
    flex: 1;
    padding: 50px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 3px solid var(--color-accent);
}

.meo-feature-label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 14px;
}

.meo-feature-content h4 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-white);
    margin-bottom: 14px;
    line-height: 1.2;
}

.meo-feature-content p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.62);
    line-height: 1.65;
    max-width: 520px;
}

.meo-feature-img {
    width: 42%;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.meo-feature-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--color-dark) 0%, transparent 45%);
    z-index: 1;
}

.meo-feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.meo-feature-card:hover .meo-feature-img img { transform: scale(1.05); }

/* ── Strategy Section ──────────────────────────────────────────────────── */
.strategy-section { margin-top: 80px; }

.strategy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.box-full {
    grid-column: 1 / -1;
    grid-row: 1;
    min-height: auto;
    padding-top: 22px;
    padding-bottom: 22px;
}
.box-full .strategy-box-img-left {
    max-height: 135px;
}
.box-s4   { grid-column: 1;      grid-row: 2 / span 2; }
.box-s5   { grid-column: 1;      grid-row: 4; }
.box-s2   { grid-column: 2;      grid-row: 2; }
.box-s3   { grid-column: 2;      grid-row: 3; }
.box-s6   { grid-column: 2;      grid-row: 4; }

.strategy-box {
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: stretch;
    overflow: hidden;
    min-height: 180px;
    border-bottom: 6px solid #000;
    transition: border-color 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    padding: 40px 30px;
    gap: 25px;
}

.strategy-box:hover {
    border-color: var(--color-accent);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.strategy-box:hover .box-zoom-img { transform: scale(1.1); }

.strategy-box-large { flex-direction: column; }

.strategy-box-content {
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.strategy-box-content h4 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--color-dark);
}

.strategy-box-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.5;
}

.strategy-box-img-small,
.strategy-box-img-left {
    width: 45%;
    background: #e0e0e0;
    overflow: hidden;
    border-radius: var(--radius-sm);
}

.strategy-box-img-top {
    height: 320px;
    width: 100%;
    background: #e0e0e0;
    overflow: hidden;
    border-radius: var(--radius-sm);
    margin-bottom: 25px;
}

.box-zoom-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

/* ==========================================================================
   Partners Marquee
   ========================================================================== */
.partners-inner-section {
    background-color: var(--color-white);
    border-radius: var(--radius-md);
    padding: 60px 70px;
    margin-top: 80px;
    box-shadow: var(--shadow-sm);
}

.partners-inner-header {
    margin-bottom: 50px;
}

.partners-inner-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
    letter-spacing: 0.5px;
}

.partners-marquee-wrapper {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.partners-marquee-track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: marquee-scroll 45s linear infinite;
}

.partners-marquee-track:hover { animation-play-state: paused; }

@keyframes marquee-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partner-logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-width: 120px;
    height: 100px;
    position: relative;
    transition: transform 0.4s ease, filter 0.4s ease;
    filter: drop-shadow(0 0 0 rgba(0, 0, 0, 0));
}

.partner-logo-link::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 3px;
    background: #000;
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.partner-logo-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.partner-logo-link img {
    max-height: 55px;
    max-width: 100%;
    object-fit: contain;
    filter: opacity(0.88);
    transition: filter 0.4s ease, transform 0.4s ease;
}

.partner-logo-link.is-center img {
    transform: scale(1.2);
    filter: opacity(1);
}

.partner-logo-link:hover {
    transform: translateY(-8px) scale(1.05);
    filter: drop-shadow(0 15px 20px rgba(0, 0, 0, 0.1));
}

.partner-logo-link:hover img { filter: opacity(1); }

/* ==========================================================================
   News Placeholder (black crosshatch box)
   ========================================================================== */
.news-placeholder {
    background-color: #111111;
    background-image:
        linear-gradient(45deg, #2a2a2a 25%, transparent 25%),
        linear-gradient(-45deg, #2a2a2a 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #2a2a2a 75%),
        linear-gradient(-45deg, transparent 75%, #2a2a2a 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    overflow: hidden;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.news-card:hover .news-placeholder {
    transform: scale(1.08);
}

/* ==========================================================================
   News & Insights Section
   ========================================================================== */
.news-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
}

.news-header-title { margin: 0; }

.see-all-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--color-text);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.see-all-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 1px solid var(--color-gray);
    border-radius: 50%;
    font-size: 1.1rem;
    transition: all 0.3s ease, transform 0.3s ease;
}

.see-all-btn:hover .see-all-icon {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-white);
    transform: translateX(6px);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.news-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--color-text);
    cursor: pointer;
}

.news-card-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    margin-bottom: 20px;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
}

.news-card:hover .news-card-image img { transform: scale(1.08); }

/* Zoom for background-image based cards (dynamic JS cards) */
.news-card-image-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.news-card:hover .news-card-image-bg { transform: scale(1.08); }

/* Zoom for placeholder boxes */
.news-card:hover .news-placeholder { transform: scale(1.08); }

.news-card-content p {
    font-size: 1.05rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.6;
    color: var(--color-gray);
    transition: all 0.4s ease;
}

.news-card:hover .news-card-content p {
    color: var(--color-accent);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.8), 0 0 20px rgba(212, 175, 55, 0.5), 0 0 30px rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

/* ==========================================================================
   Work With Us Section
   ========================================================================== */
.work-with-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.work-content { padding-right: 20px; }

.work-title {
    font-size: 1.5rem !important;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
    color: #1a1a1a;
}

.work-subtitle {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--color-dark);
    line-height: 1.4;
}

.work-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--color-gray);
    margin-bottom: 40px;
}

.btn-glow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 14px 34px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    cursor: pointer;
}

.btn-glow:hover {
    background-color: #e6c55c;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.8), 0 0 45px rgba(212, 175, 55, 0.5), 0 0 60px rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
    color: var(--color-white);
}

.btn-arrow { transition: transform 0.3s ease; }
.btn-glow:hover .btn-arrow { transform: translateX(4px); }

.work-image { width: 100%; height: 100%; }

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

/* ==========================================================================
   Inner Page Hero
   ========================================================================== */
.page-hero {
    position: relative;
    width: 100%;
    height: 75vh;
    min-height: 480px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
}

.page-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.15) 0%,
        rgba(0,0,0,0.55) 100%
    );
}

.page-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 80px 60px;
    color: #fff;
}

.page-hero-label {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 14px;
    opacity: 0;
    animation: phFadeUp 0.5s ease 0.1s forwards;
}

/* Title wrapper — inline-flex column so lines match title width */
.page-hero-title-wrap {
    display: inline-flex;
    flex-direction: column;
    gap: 0;
}

/* Animated gold rules */
.title-rule {
    display: block;
    height: 1.5px;
    background-color: var(--color-accent);
    width: 0;
}

.title-rule-top {
    margin-bottom: 5px;
    animation: ruleGrow 0.7s ease 0.5s forwards;
}

.title-rule-bottom {
    margin-top: 5px;
    animation: ruleGrow 0.7s ease 0.5s forwards;
}

@keyframes ruleGrow {
    from { width: 0; }
    to   { width: 100%; }
}

.page-hero-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: -0.5px;
    color: #fff;
    line-height: 1.2;
    margin: 0;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0;
    animation: phFadeUp 0.5s ease 0.3s forwards;
}

/* Subtitle — slides in after lines finish */
.page-hero-subtitle-text {
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 16px;
    opacity: 0;
    transform: translateY(8px);
    animation: phFadeUp 0.6s ease 1.3s forwards;
}

@keyframes phFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background-color: #f5f5f7;
    color: var(--color-gray);
    padding: var(--space-xl) 0 var(--space-md) 0;
    font-size: 0.9rem;
}

.footer-container {
    max-width: none;
    padding: 0 4.7cm;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    gap: var(--space-lg);
    margin-bottom: 60px;
}

.footer-logo-link {
    display: block;
    height: 60px;
    width: 180px;
    position: relative;
}

.footer-logo-link img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: left center;
}

.footer-title {
    color: var(--color-dark);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.footer-list {
    list-style: none;
    padding: 0;
}

.footer-list li { margin-bottom: 12px; }

.footer-list a {
    color: var(--color-gray);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #ddd;
    padding-top: var(--space-md);
    flex-wrap: wrap;
    gap: var(--space-sm);
    color: var(--color-gray);
    font-size: 0.85rem;
    font-weight: 500;
}

.footer-bottom-left,
.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: var(--color-gray);
    transition: color 0.3s ease;
}

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

.social-links-footer { display: flex; gap: 10px; }

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #ccc;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: var(--transition-fast);
}

.social-link:hover { background-color: #0A66C2; }

/* ==========================================================================
   Animations & Reveals
   ========================================================================== */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all var(--transition-slow);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all var(--transition-slow);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all var(--transition-slow);
}

.reveal-up.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translate(0, 0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
    .news-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
    .strategy-grid,
    .work-with-us-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-container { padding: 0 calc(2 * var(--space-md)); }
    .work-content { padding-right: 0; margin-bottom: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }

    .box-full, .box-s2, .box-s3, .box-s4, .box-s5, .box-s6 {
        grid-column: 1;
        grid-row: auto;
    }

    .strategy-box { flex-direction: column; }

    .strategy-box-img-small,
    .strategy-box-img-left {
        width: 100%;
        height: 150px;
    }

    .strategy-box-img-left { order: -1; }
    .partners-inner-section { padding: 40px 20px; }
    .intro-tiles {
        grid-template-columns: 1fr;
    }
    .intro-tile--tall {
        grid-row: auto;
    }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    .news-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .gray-section {
        margin: 40px 20px;
        padding: 50px 20px;
    }

    .hero-content { padding: 0 24px; }

    .eq-panel {
        flex-direction: column;
        height: auto;
    }

    .eq-panel-img {
        flex: none;
        width: 100%;
        height: 200px;
        padding: 12px 12px 0 12px;
    }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.8rem; }
    .hero-subtitle { font-size: 1rem; }
}
