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

:root {
    --primary: #0B2D5B;
    --primary-light: #1A4D8F;
    --primary-dark: #061A36;
    --primary-rich: #0F3A72;
    --accent: #B3D4F0;
    --white: #FFFFFF;
    --off-white: #F4F6F9;
    --charcoal: #1A1A1A;
    --warm-gray: #45505A;
    --border: #DDE3EB;
    --success: #2E7D32;
    --warning: #ED6C02;
    --error: #D32F2F;
    --whatsapp: #25D366;
    --mui-stroke: 1.5;
    --icon-xs: 16px;
    --icon-sm: 20px;
    --icon-md: 24px;
    --icon-lg: 32px;
    --icon-xl: 48px;
    --icon-2xl: 64px;
    --icon-gap-sm: 8px;
    --icon-gap-lg: 12px;
    --font-display: 'Raleway', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* ===== MUI ICON SYSTEM ===== */
.mui-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    vertical-align: middle;
    color: inherit;
    line-height: 0;
}
.mui-icon svg {
    width: 1em;
    height: 1em;
    display: block;
    fill: currentColor;
    stroke: currentColor;
    stroke-width: var(--mui-stroke);
    stroke-linecap: round;
    stroke-linejoin: round;
    -webkit-user-select: none;
    user-select: none;
}
.mui-icon.mui-icon--filled svg { stroke-width: 0; fill: currentColor; }
.mui-icon.mui-icon--outlined svg { fill: none; stroke: currentColor; stroke-width: var(--mui-stroke); }
.mui-icon-xs { font-size: var(--icon-xs); }
.mui-icon-sm { font-size: var(--icon-sm); }
.mui-icon-md { font-size: var(--icon-md); }
.mui-icon-lg { font-size: var(--icon-lg); }
.mui-icon-xl { font-size: var(--icon-xl); }
.mui-icon-2xl { font-size: var(--icon-2xl); }
.mui-icon--primary { color: var(--primary); }
.mui-icon--secondary { color: var(--warm-gray); }
.mui-icon--accent { color: var(--accent); }
.mui-icon--success { color: var(--success); }
.mui-icon--warning { color: var(--warning); }
.mui-icon--error { color: var(--error); }
.mui-icon--whatsapp { color: var(--whatsapp); }
.mui-icon--white { color: var(--white); }
.mui-icon--muted { color: rgba(255, 255, 255, 0.6); }
.mui-icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(11, 45, 91, 0.08) 0%, rgba(26, 77, 143, 0.04) 100%);
    color: var(--primary);
    margin-bottom: 16px;
}
.mui-icon-circle.mui-icon-circle--accent {
    background: linear-gradient(135deg, rgba(179, 212, 240, 0.25) 0%, rgba(11, 45, 91, 0.06) 100%);
}


/* ===== REMEDIATION UTILITIES: NAV / LINK / ICON / MENU =====
   Replaces equivalent inline style="..." attributes (2390 total reduced
   to ~60 structural only post-remediation). WCAG 2.2 touch target >=44px.
*/

/* Navbar logo utility (replaces inline style on <img class="navbar-logo"> */
.navbar-logo-styled {
    height: 44px;
    width: auto;
    background: #ffffff;
    border-radius: 8px;
    padding: 4px;
}

/* MUI Icon alignment helpers (replaces style="vertical-align:-2px" on 51 spans) */
.mui-icon--align-sub { vertical-align: -2px; }
.mui-icon--align-text-bottom { vertical-align: text-bottom; }

/* WhatsApp FAB sizing helper (replaces style="font-size:34px" on 49 icons) */
.mui-icon--whatsapp-fab { font-size: 34px; }

/* Heading inline flex icon helper (replaces style="display:flex;align-items:center;gap:8px" on pillar h4) */
.h-flex-icon {
    display: flex;
    align-items: center;
    gap: var(--icon-gap-sm, 8px);
}
.h-flex-icon .mui-icon { flex-shrink: 0; }

/* Scroll-down icon muted color (replaces style="color:rgba(255,255,255,0.4)") */
.mui-icon--scroll-muted { color: rgba(255, 255, 255, 0.4); }

/* Service-card decorative icon 36x36 (replaces 28 inline styles) */
.mui-icon--card-lg {
    width: 36px !important;
    height: 36px !important;
    color: var(--primary);
    margin: 0 auto 12px;
}

/* ==== LINK & NAV INTERACTION STATES (consistent hover/focus across device/KB/touch) ==== */
a,
button,
.lang-link,
.submenu-item,
.nav-link,
.about-link,
.btn,
.active-link {
    transition: color 0.2s ease, background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

/* Keyboard focus visible: 2px accent outline + 2px offset - WCAG 2.4.7 + 2.5.7 */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[role="button"]:focus-visible {
    outline: 2px solid var(--accent, #ffb44c);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Navbar & mobile menu touch target sizing >= 44×44px per WCAG 2.5.5 Target Size */
.mobile-menu ul li a,
.mobile-menu-toggle,
.nav-link,
.lang-link,
.submenu-item,
.footer-col ul li a {
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 6px;
}
/* Mobile menu toggle button: explicit WCAG 2.5.5 >=44x44 touch area enforced */
.mobile-menu-toggle,
.mobile-toggle {
    height: 48px !important;
    width: 48px !important;
    min-height: 48px !important;
    min-width: 48px !important;
    padding: 10px !important;
    box-sizing: border-box;
}

/* Nav link hover */
.nav-link:hover {
    color: var(--accent);
    transform: translateY(-1px);
}

/* Active nav item underline */
.active-link {
    position: relative;
    color: var(--accent);
    font-weight: 600;
}
.active-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 12px;
    right: 12px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

/* Language link hover */
.lang-link:hover {
    background: rgba(179, 212, 240, 0.1);
    transform: translateX(2px);
}

/* Submenu item hover */
.submenu-item:hover {
    background: rgba(11, 45, 91, 0.05);
    color: var(--primary);
}

/* Footer link hover */
.footer-col ul li a:hover {
    color: var(--accent);
    transform: translateX(2px);
}

/* Button hover + active press */
.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(11, 45, 91, 0.18);
}
.btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(11, 45, 91, 0.12);
}

/* Service card hover lift (links inside) */
.service-card a:hover {
    color: var(--primary);
}

/* About learn-more chevron arrow link */
.about-link:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

/* Mobile menu open button */
.mobile-menu-toggle:hover {
    background: rgba(179, 212, 240, 0.15);
}
.mobile-menu-toggle[aria-expanded="true"] {
    background: rgba(179, 212, 240, 0.2);
}

/* CTA contact link hover effect (tel / mailto / location) */
.hero-contact a:hover,
.cta-item a:hover {
    color: var(--accent);
    text-decoration: underline;
}

/* WhatsApp widget float pulse on hover (for FAB) */
.whatsapp-widget:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45) !important;
}
.whatsapp-widget:active {
    transform: scale(0.98);
}

/* ===== RESPONSIVE / MOBILE ADJUSTMENTS ===== */
@media (max-width: 1024px) {
    /* Tablet: stack pillars & insight cards */
    .pillars-grid,
    .insights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    /* Mobile: 1 column content grids */
    .pillars-grid,
    .insights-grid,
    .services-grid,
    .features-grid {
        grid-template-columns: 1fr !important;
    }
    .hero-contact {
        flex-direction: column;
        gap: 12px !important;
    }
    .hero-contact-item {
        min-height: 44px;
        justify-content: flex-start;
    }
    .active-link::after {
        left: 0;
        right: 0;
    }
    .mobile-menu ul {
        padding: 12px 0;
    }
    .mobile-menu ul li {
        margin: 0;
    }
    .mobile-menu ul li a {
        width: 100%;
        justify-content: flex-start;
        padding: 10px 20px;
    }
}
@media (max-width: 480px) {
    /* Small mobile: reduce button/grid horizontal density, keep touch 44px */
    .btn { min-height: 48px; padding: 0 20px; }
    .hero-content h1 { font-size: 2rem; }
    .hero-content h2 { font-size: 1.25rem; }
    .mui-icon-circle {
        width: 48px; height: 48px; margin-bottom: 12px;
    }
    .mui-icon-circle .mui-icon { font-size: var(--icon-md); }
    .service-card { padding: 20px; }
}


html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--off-white);
}

/* ===== LOADER ===== */
#loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
}

#loader .loader-inner {
    text-align: center;
}

#loader .loader-mark {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 0.12em;
    color: var(--white);
    margin-bottom: 24px;
}

#loader .loader-bar {
    width: 120px;
    height: 2px;
    background: rgba(255, 255, 255, 0.15);
    margin: 0 auto;
    border-radius: 2px;
    overflow: hidden;
}

#loader .loader-bar::after {
    content: '';
    display: block;
    width: 40%;
    height: 100%;
    background: var(--accent);
    border-radius: 2px;
    animation: loaderSlide 1s ease-in-out infinite;
}

@keyframes loaderSlide {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(350%);
    }
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 0 40px;
    z-index: 2000;
    background: rgba(11, 45, 91, 0.97);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.navbar-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.wordmark {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.wordmark-text {
    display: flex;
    flex-direction: column;
}

.wordmark-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.05em;
    color: var(--white);
    text-transform: uppercase;
    line-height: 1.1;
}

.wordmark-tagline {
    font-family: var(--font-display);
    font-weight: 300;
    font-size: 9px;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.navbar-logo {
    height: 44px;
    width: auto;
    display: block;
    background: #FFFFFF;
    border-radius: 8px;
    padding: 4px;
    object-fit: contain;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.16);
    transition: height 0.3s ease, transform 0.3s ease;
}

.navbar.scrolled .navbar-logo {
    height: 38px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    display: block;
    margin-bottom: 16px;
    filter: brightness(0) invert(1) opacity(0.7);
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-self: center;
}

.navbar-right a {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-right a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.navbar-right a:hover {
    color: var(--white);
}

.navbar-right a:hover::after {
    width: 100%;
}

.navbar-right a.active-link {
    color: var(--white);
}

.navbar-right a.active-link::after {
    width: 100%;
}

/* Submenu Styles */
.nav-item-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
    height: 100%;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(11, 45, 91, 0.98);
    min-width: 220px;
    padding: 12px 0;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 2001;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-item-dropdown:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu-item {
    display: block;
    padding: 10px 24px;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.submenu-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--accent);
    padding-left: 28px;
}

/* Mobile Submenu */
.mobile-nav .nav-item-dropdown {
    width: 100%;
    flex-direction: column;
    align-items: center;
}

.mobile-nav .submenu {
    position: static;
    background: transparent;
    box-shadow: none;
    border: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    text-align: center;
    padding: 0;
    margin-top: 12px;
}

.mobile-nav .submenu-item {
    padding: 8px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.mobile-nav .submenu-item:hover {
    padding-left: 0;
    color: var(--accent);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    /* ===== WCAG 2.5.5 Target Size: enforce 48×48 touch target (oversized for fingers) ===== */
    height: 48px;
    width: 48px;
    min-height: 48px;
    min-width: 48px;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}
/* 100%-width submit button utility (replaces inline style="width:100%" on form buttons) */
.btn.btn-full { width: 100%; }

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--white);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(6, 26, 54, 0.98);
    z-index: 1950;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-nav.open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav a {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-nav a:hover,
.mobile-nav a.active-link {
    color: var(--accent);
}

/* ===== DOT NAV ===== */
.dot-nav {
    position: fixed;
    left: 28px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 900;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dot-nav-line {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.15);
}

.dot-nav-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    border: none;
    padding: 0;
}

.dot-nav-dot.active {
    background: var(--accent);
    transform: scale(1.3);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    z-index: 0;
    box-sizing: border-box;
    padding-top: 120px;
}

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

.hero-bg-image {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #06142A 0%, #0D2B4F 25%, #061A36 50%, #0B2D5B 75%, #061A36 100%);
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-bg-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 50%, rgba(26, 77, 143, 0.25) 0%, transparent 70%),
        radial-gradient(ellipse 50% 80% at 20% 60%, rgba(179, 212, 240, 0.08) 0%, transparent 60%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 26, 54, 0.75) 0%, rgba(11, 45, 91, 0.55) 50%, rgba(26, 77, 143, 0.6) 100%);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(6, 26, 54, 0.35) 0%, transparent 30%, transparent 70%, rgba(6, 26, 54, 0.55) 100%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-text {
    max-width: 560px;
}

.hero-headline {
    font-family: var(--font-display);
    font-weight: 100;
    font-size: clamp(36px, 5vw, 72px);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.08;
    margin-bottom: 20px;
}

.hero-sub {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
}

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

.hero-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 32px 28px;
    backdrop-filter: blur(8px);
}

.hero-contact-label {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 4px;
}

.hero-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.hero-contact-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.hero-contact-item a:hover {
    color: var(--accent);
}

.hero-contact-item svg {
    flex-shrink: 0;
}

.hero-offices {
    margin-top: 8px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-offices-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 8px;
}

.hero-office {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.hero-office strong {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.scroll-cta {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-align: center;
}

.scroll-cta span {
    display: block;
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.scroll-arrow {
    display: block;
    margin: 0 auto;
    animation: bounceArrow 1.5s ease-in-out infinite;
}

@keyframes bounceArrow {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(6px);
    }
}

/* ===== VIDEO THUMBNAIL ===== */
.video-thumbnail {
    position: relative;
    width: 100%;
    max-width: 320px;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    background: var(--primary-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-thumbnail video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.header-video-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 48px;
    width: 100%;
}

.header-video-content {
    flex: 1;
}

@media (max-width: 992px) {
    .header-video-wrapper {
        flex-direction: column;
        gap: 24px;
    }
    .video-thumbnail {
        max-width: 480px;
    }
}

@media (max-width: 576px) {
    .video-thumbnail {
        max-width: 100%;
    }
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 13px 32px;
    border-radius: 3px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-accent {
    background: var(--accent);
    color: var(--primary-dark);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    border-color: var(--white);
    color: var(--white);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-light);
    color: var(--white);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white);
}

/* ===== SECTION COMMON ===== */
.section {
    padding: 100px 40px;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-weight: 200;
    font-size: clamp(32px, 4vw, 48px);
    color: var(--charcoal);
    line-height: 1.15;
    margin-bottom: 20px;
}

.section-title-light {
    color: var(--white);
}

.section-intro {
    font-size: 16px;
    line-height: 1.8;
    color: var(--warm-gray);
    max-width: 700px;
    margin-bottom: 48px;
}

/* ===== ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ===== ABOUT ===== */
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--warm-gray);
    margin-bottom: 20px;
}

.about-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    text-decoration: none;
    transition: gap 0.3s ease;
}

.about-link:hover {
    gap: 14px;
}

/* Differentiators */
.diff-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.diff-card {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 6px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.diff-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 16px rgba(11, 45, 91, 0.08);
}

.diff-card h4 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.diff-card p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--warm-gray);
    margin: 0;
}

/* ===== SERVICES ===== */
.services {
    background: var(--off-white);
}

.services-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 40px;
}

.tab-btn {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 12px 28px;
    border: 1.5px solid var(--border);
    border-radius: 3px;
    background: var(--white);
    color: var(--warm-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 5px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(11, 45, 91, 0.1);
    border-color: var(--primary);
}

.service-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
    color: var(--primary);
}

.service-card h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-card li {
    font-size: 13px;
    line-height: 1.5;
    color: var(--warm-gray);
    padding: 4px 0 4px 16px;
    position: relative;
}

.service-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

/* ===== STATS ===== */
.stats {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    padding: 80px 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-weight: 200;
    font-size: clamp(36px, 4vw, 52px);
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonials-header {
    text-align: center;
    max-width: 540px;
    margin: 0 auto 40px;
}

.testimonials-header .section-badge {
    display: inline-block;
    border: 1px solid var(--border);
    padding: 5px 16px;
    border-radius: 6px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--primary);
    margin-bottom: 16px;
}

.testimonials-header h2 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(24px, 4vw, 44px);
    letter-spacing: -0.02em;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.testimonials-header p {
    font-size: 16px;
    color: var(--warm-gray);
    line-height: 1.6;
}

.testimonials-columns {
    display: flex;
    justify-content: center;
    gap: 24px;
    max-height: 740px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
}

.testimonials-col {
    width: 320px;
    flex-shrink: 0;
    overflow: hidden;
}

.testimonials-col-inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-bottom: 24px;
    animation: scrollCol linear infinite;
}

.testimonials-col:nth-child(1) .testimonials-col-inner {
    animation-duration: 25s;
}

.testimonials-col:nth-child(2) .testimonials-col-inner {
    animation-duration: 32s;
}

.testimonials-col:nth-child(3) .testimonials-col-inner {
    animation-duration: 28s;
}

@keyframes scrollCol {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}

.testimonials-columns:hover .testimonials-col-inner {
    animation-play-state: paused;
}

.tcard {
    padding: 28px;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: var(--white);
    box-shadow: 0 4px 24px rgba(11, 45, 91, 0.06);
    width: 100%;
}

.tcard-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--charcoal);
    margin-bottom: 16px;
}

.tcard-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tcard-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.tcard-name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    color: var(--charcoal);
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.tcard-role {
    font-size: 13px;
    color: var(--warm-gray);
    opacity: 0.7;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.testimonials-col-2 {
    display: block;
}

.testimonials-col-3 {
    display: block;
}

@media (max-width: 1024px) {
    .testimonials-col-3 {
        display: none;
    }
    .testimonials-col {
        width: 300px;
    }
}

@media (max-width: 680px) {
    .testimonials-col-2 {
        display: none;
    }
    .testimonials-columns {
        gap: 0;
    }
    .testimonials-col {
        width: 100%;
        max-width: 360px;
    }
}

/* ===== INSIGHTS ===== */
.insights {
    background: var(--off-white);
}

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

.insight-card {
    background: var(--white);
    border-radius: 5px;
    padding: 28px 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(11, 45, 91, 0.08);
}

.insight-icon {
    width: 40px;
    height: 40px;
    color: var(--primary);
    margin-bottom: 16px;
}

.insight-card h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    color: var(--charcoal);
    margin-bottom: 8px;
    line-height: 1.4;
}

.insight-card p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--warm-gray);
    margin: 0;
}

/* ===== COMMITMENT ===== */
.commitment {
    background: var(--white);
}

.commitment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.commitment-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--warm-gray);
    margin-bottom: 20px;
}

.commitment-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.pillar {
    padding: 24px;
    background: var(--off-white);
    border-radius: 6px;
    border-left: 3px solid var(--accent);
}

.pillar h4 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 6px;
}

.pillar p {
    font-size: 13px;
    line-height: 1.5;
    color: var(--warm-gray);
    margin: 0;
}

/* ===== CTA ===== */
.cta {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    padding: 100px 40px;
    text-align: center;
}

.cta h2 {
    font-family: var(--font-display);
    font-weight: 200;
    font-size: clamp(28px, 3.5vw, 44px);
    color: var(--white);
    line-height: 1.2;
    max-width: 700px;
    margin: 0 auto 16px;
}

.cta p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 12px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.cta-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 700px;
    margin: 32px auto 36px;
}

.cta-contact-item {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.cta-contact-item a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
}

.cta-contact-item a:hover {
    color: var(--accent);
}

.cta-contact-item small {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--charcoal);
    padding: 60px 40px 32px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-brand .wordmark-name {
    font-size: 15px;
    margin-bottom: 2px;
}

.footer-brand .wordmark-tagline {
    margin-bottom: 16px;
    display: block;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
    max-width: 300px;
    margin-bottom: 16px;
}

.footer h4 {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 10px;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--accent);
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 7px;
}

.footer ul a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-offices-list li {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-offices-list li span:first-child {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
}

.footer-tagline {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 300;
    font-style: italic;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.05em;
}

.lang-link {
    display: flex !important;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.lang-flag {
    width: 20px;
    height: auto;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    object-fit: cover;
}

/* RTL Support for Footer */
[dir="rtl"] .footer-grid {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] .footer h4::after {
    left: auto;
    right: 0;
}

[dir="rtl"] .lang-link {
    direction: ltr;
    justify-content: flex-end;
}


/* ===== PRODUCTS PAGE ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.product-card {
    background: var(--white);
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(11, 45, 91, 0.1);
    border-color: var(--primary);
}

.product-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
}

.product-card-body {
    padding: 24px;
}

.product-card-body h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 16px;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.product-card-body .product-tag {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--off-white);
    padding: 4px 10px;
    border-radius: 3px;
    margin-bottom: 10px;
}

.product-card-body p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--warm-gray);
    margin-bottom: 12px;
}

.product-card-body .product-applications {
    font-size: 12px;
    color: var(--warm-gray);
    line-height: 1.5;
}

.product-card-body .product-applications strong {
    color: var(--charcoal);
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 6px;
    border: 1px solid var(--border);
    box-shadow: 0 18px 50px rgba(11, 45, 91, 0.08);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 14px;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--off-white);
    color: var(--charcoal);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-info-card {
    padding: 28px;
    background: var(--white);
    border-radius: 6px;
    border: 1px solid var(--border);
    box-shadow: 0 14px 40px rgba(11, 45, 91, 0.06);
}

.contact-info-card h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info-card p,
.contact-info-card a {
    font-size: 14px;
    line-height: 1.7;
    color: var(--warm-gray);
    text-decoration: none;
}

.contact-info-card a:hover {
    color: var(--primary);
}

.contact-info-card img {
    display: block;
    width: 100%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(6, 26, 54, 0.14);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.team-card {
    background: var(--white);
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(11, 45, 91, 0.1);
}

.team-card-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 300;
}

.team-card h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.team-card .team-role {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 12px;
}

.team-card p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--warm-gray);
}

.team-card .team-contact {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.team-card .team-contact a {
    font-size: 13px;
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.team-card .team-contact a:hover {
    color: var(--primary-light);
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
    position: relative;
    width: 100%;
    min-height: 420px;
    padding: 160px 40px 88px;
    background:
        linear-gradient(180deg, rgba(6, 20, 42, 0.42) 0%, rgba(6, 20, 42, 0.84) 100%),
        linear-gradient(135deg, #06142A 0%, #0D2B4F 100%);
    background-image:
        linear-gradient(180deg, rgba(6, 20, 42, 0.42) 0%, rgba(6, 20, 42, 0.84) 100%),
        var(--page-hero-image, linear-gradient(135deg, #06142A 0%, #0D2B4F 100%));
    background-position: center;
    background-size: cover;
    overflow: hidden;
    text-align: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6, 26, 54, 0.75) 0%, rgba(6, 26, 54, 0.28) 48%, rgba(6, 26, 54, 0.78) 100%);
}

.page-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 880px;
    margin: 0 auto;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.34);
}

.page-hero h1 {
    font-family: var(--font-display);
    font-weight: 100;
    font-size: clamp(36px, 5vw, 60px);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.1;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.page-hero .breadcrumb {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
}

.page-hero .breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-hero .breadcrumb a:hover {
    color: var(--accent);
}


/* ===== HTML-VALIDATE REMEDIATION UTILITIES (replace remaining 2272 inline styles) ===== */

/* Background colors / section backgrounds */
.u-bg-white { background: var(--white); }
.u-bg-off-white { background: var(--off-white); }
.u-bg-hero-gradient { background: linear-gradient(135deg, #061A36 0%, #0B2D5B 100%); }
.u-bg-off-white-card { background: var(--off-white); padding: 32px; border-radius: 8px; }
.u-bg-lighten { background: rgba(255,255,255,0.1); padding: 12px; border-radius: 50%; }
.u-bg-primary-box { background: var(--primary-dark); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; height: 240px; }
.u-bg-primary-card { background: var(--off-white); padding: 16px; border: 1px solid var(--border); }
.u-bg-corner-tl { position: absolute; top: 0; left: 0; width: 100px; height: 100px; border-top: 4px solid var(--accent); border-left: 4px solid var(--accent); z-index: 0; }
.u-bg-corner-br { position: absolute; bottom: 0; right: 0; width: 100px; height: 100px; border-bottom: 4px solid var(--accent); border-right: 4px solid var(--accent); z-index: 0; }

/* Spacing - margins (top) */
.u-mt-auto { margin-left: auto !important; margin-right: auto !important; }
.u-mt-8 { margin-top: 8px; }
.u-mt-12 { margin-top: 12px; }
.u-mt-18 { margin-top: 18px; }
.u-mt-24 { margin-top: 24px; }
.u-mt-30 { margin-top: 30px; }
.u-mt-32 { margin-top: 32px; }
.u-mt-40 { margin-top: 40px; }
.u-mt-48 { margin-top: 48px; }
.u-mt-80 { margin-top: 80px; }
.u-mb-8 { margin-bottom: 8px; }
.u-mb-12 { margin-bottom: 12px; }
.u-mb-16 { margin-bottom: 16px; }
.u-mb-20 { margin-bottom: 20px; }
.u-mb-24 { margin-bottom: 24px; }
.u-mb-30 { margin-bottom: 30px; }
.u-mt-12mb { margin:4px 0 14px; }

/* Text alignment + sizes + colors */
.u-t-center { text-align: center; }
.u-t-center-col { text-align: center; max-width: 700px; margin: 0 auto 48px; }
.u-t-maxw800 { max-width: 800px; margin: 0 auto; }
.u-t-13 { font-size: 13px; }
.u-t-13-o8 { font-size: 13px; opacity: 0.8; }
.u-t-13-mb16-o8 { font-size: 13px; margin-bottom: 16px; opacity: 0.8; }
.u-t-13-gray { font-size: 13px; color: var(--warm-gray); line-height: 1.6; }
.u-t-13-gray-mb14 { margin:4px 0 14px;font-size:13px;color:#556; }
.u-t-14 { font-size: 14px; }
.u-t-14-gray { font-size: 14px; color: var(--warm-gray); }
.u-t-14-gray-mb8 { font-size: 14px; color: var(--warm-gray); margin-bottom: 8px; }
.u-t-14-gray-mb8pad-left { font-size: 14px; color: var(--warm-gray); margin-bottom: 8px; padding-left: 20px; position: relative; }
.u-t-14-gray-mb8pad-right { font-size: 14px; color: var(--warm-gray); margin-bottom: 8px; padding-right: 20px; position: relative; }
.u-t-14-gray-lh { font-size: 14px; color: var(--warm-gray); margin-bottom: 24px; line-height: 1.7; }
.u-t-15-gray-lh { font-size: 15px; color: var(--warm-gray); margin-bottom: 24px; line-height: 1.7; }
.u-t-18-accent { font-size: 18px; margin-bottom: 4px; color: var(--accent); }
.u-t-18-primary-mb12 { color: var(--primary); font-size: 18px; margin-bottom: 12px; }
.u-t-24 { font-size: 24px; }
.u-t-24-bold-primary-mb16 { font-size: 24px; font-weight: 700; color: var(--primary); margin-bottom: 16px; }
.u-t-24-display-primary-mb16 { font-family: var(--font-display); font-size: 24px; color: var(--primary); margin-bottom: 16px; font-weight: 400; }
.u-t-uppercase-label { font-family: var(--font-display); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--primary-light); margin-bottom: 12px; display: block; }
.u-t-uppercase-label-blue { display:block;font-size:11px;color:#9cc6ff;margin-bottom:4px; }
.u-t-uppercase-label-amber { display:block;font-size:11px;color:#ffcf8a;margin-bottom:4px; }
.u-t-uppercase-kantumruy { font-family: 'Kantumruy Pro', 'Inter', 'Raleway', sans-serif; }
.u-t-uppercase-section-label { display: block; margin-top: 12px; font-weight: 700; font-style: normal; font-size: 14px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--warm-gray); }
.u-t-uppercase-short { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--primary); margin-bottom: 8px; }
.u-t-block { display: block; }
.u-t-block-center { width: 100%; text-align: center; display: block; }
.u-t-charcoal { color: var(--charcoal); }
.u-t-white { color: white; }
.u-t-white-underline { color: white; text-decoration: underline; }

/* Section / padding box helpers */
.u-pad-16 { padding: 16px; }
.u-pad-16-left { padding-left: 16px; }
.u-pad-32 { padding: 32px; }
.u-pad-48 { padding: 48px; }
.u-pad-32-neg-left { padding-left: -16px; }

/* Icon / list / layout boxes */
.u-posrel-20 { position: relative; padding: 20px; }
.u-list-style-none { list-style: none; padding: 0; margin-bottom: 24px; }
.u-list-style-wrap { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 20px; margin-top: 24px; }
.u-row-mb12-pad-left { margin-bottom: 12px; padding-left: 28px; position: relative; }
.u-row-mb12-pad-right { margin-bottom: 12px; padding-right: 28px; position: relative; }
.u-pos-abs-left-light { position: absolute; left: 0; color: var(--primary-light); font-weight: bold; }
.u-pos-abs-right-light { position: absolute; right: 0; color: var(--primary-light); font-weight: bold; }
.u-pos-abs-left-primary { position: absolute; left: 0; top: 4px; color: var(--primary); }
.u-pos-abs-right-primary { position: absolute; right: 0; top: 4px; color: var(--primary); }
.u-row-border-between { padding: 12px 0; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; }
.u-row-inline-between { padding: 12px 0; display: flex; justify-content: space-between; }
.u-icon-36-primary { width: 36px; height: 36px; color: var(--primary); margin: 0 auto 12px; }
.u-row-mb24-flex-gap { margin-bottom: 24px; display: flex; align-items: flex-start; gap: 16px; }
.u-circle-56-primary { width: 56px; height: 56px; background: var(--primary); color: white; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; }

/* Video hero */
.u-video-thumb { margin-bottom: 24px; max-width: 100%; height: auto; aspect-ratio: 16/9; position: relative; border-radius: 8px; overflow: hidden; }
.u-video-abs-fill { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.u-video-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 20px; }
.u-video-play-link { display: flex; flex-direction: column; align-items: center; text-decoration: none; color: white; gap: 12px; padding: 20px; text-align: center; z-index: 2; }
.u-video-play-text { font-weight: 600; font-family: sans-serif; }
.u-video-thumb-bg { width: 100%; height: 120px; object-fit: cover; border-radius: 4px; margin-bottom: 12px; }
.u-video-thumb-cover { width: 100%; height: 100%; object-fit: cover; }

/* Grayscale hero banner */
.u-office-card { width: 100%; border-radius: 4px; position: relative; z-index: 1; filter: grayscale(20%) contrast(1.1); }

/* WhatsApp green bold */
.u-whatsapp-green { color: #25D366; font-weight: 700; }

/* Block quote */
.u-blockquote { margin: 32px 0; padding-left: 24px; border-left: 4px solid var(--accent); font-style: italic; font-size: 18px; color: var(--primary); }
.u-blockquote-rtl { margin: 32px 0; padding-right: 24px; border-right: 4px solid var(--accent); font-style: italic; font-size: 18px; color: var(--primary); }

/* Form inputs */
.u-form-input { width: 100%; padding: 12px; border: 1px solid rgba(0,0,0,0.1); border-radius: 4px; font-family: inherit; }
.u-form-input-white { width: 100%; padding: 12px; border: 1px solid rgba(0,0,0,0.1); border-radius: 4px; font-family: inherit; background: white; }

/* Textarea */
.u-textarea-100w { width: 100%; padding: 12px; border: 1px solid rgba(0,0,0,0.1); border-radius: 4px; font-family: inherit; }

/* Grid columns 2 for FAQ / About blocks */
.u-grid-2col-80gap { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; }

/* Misc paragraph / spacing */
.u-mt-12-small { margin-top:12px;font-size:0.95rem;color:#555; }
.u-mt-48-head { margin:0 0 14px;font-size:14px;text-transform:uppercase;letter-spacing:0.1em;color:rgba(255,255,255,0.7); }

/* CTA / button block row */
.u-cta-link-block { display: block; padding: 12px 24px; background: var(--off-white); border-radius: 4px; text-decoration: none; color: var(--primary); font-weight: 600; }
.u-pl-32 { padding-left: 32px; }




/* ===== FINAL no-inline-style sweep utilities ===== */

/* Screen-reader only helper (replaces inline styles for sr-only spans) */
.sr-only,
.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* FAQ / content block utility margins */
.u-mt-40 { margin-top: 40px; }
.u-mt-40-center { margin-top: 40px; text-align: center; }
.u-mt-40-block { margin-top: 40px; }
.u-faq-item { margin-bottom: 30px; }
.u-faq-heading { color: var(--primary); margin-bottom: 10px; }
.u-faq-text { font-size: 14px; color: var(--warm-gray); }

/* Hero video section utilities (remaining inline styles in hero/CTA) */
.u-video-thumb-final { margin-bottom: 24px; max-width: 100%; height: auto; aspect-ratio: 16/9; position: relative; border-radius: 8px; overflow: hidden; }
.u-video-abs-fill-z0 { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.u-video-overlay-final { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 20px; }
.u-video-play-link-final { display: flex; flex-direction: column; align-items: center; text-decoration: none; color: white; gap: 12px; text-align: center; z-index: 2; }
.u-video-play-text-final { font-weight: 600; font-family: sans-serif; }

/* Hero-office span 2 columns */
.u-office-span-2 { grid-column: span 2; }




/* ===== PT INNER PAGES inline style utilities (u-pt-*, W3C no-inline-style compliant) ===== */
.u-pt-li-check { font-size: 14px; color: var(--warm-gray); margin-bottom: 8px; padding-left: 20px; position: relative; }
.u-pt-check-mark { position: absolute; left: 0; color: var(--primary-light); font-weight: bold; }
.u-pt-card-sub { font-size: 13px; margin-bottom: 16px; opacity: 0.8; }
.u-pt-bordered-box { padding: 16px; border: 1px solid var(--border); }
.u-pt-muted { font-size: 13px; opacity: 0.8; }
.u-pt-h6 { color: var(--primary); font-size: 18px; margin-bottom: 12px; }
.u-pt-accent-mb8 { color: var(--accent); margin-bottom: 8px; }
.u-pt-card-h3 { font-family: var(--font-display); font-size: 24px; color: var(--primary); margin-bottom: 16px; font-weight: 400; }
.u-pt-card-body { font-size: 15px; color: var(--warm-gray); margin-bottom: 24px; line-height: 1.7; }
.u-pt-cover-fill { width: 100%; height: 100%; object-fit: cover; }
.u-pt-li-wicon { margin-bottom: 12px; padding-left: 28px; position: relative; }
.u-pt-icon-left { position: absolute; left: 0; top: 4px; color: var(--primary); }
.u-pt-row { padding: 12px 0; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; }
.u-pt-office-icon { width: 36px; height: 36px; color: var(--primary); margin: 0 auto 12px; }
.u-mb-8 { margin-bottom: 8px; }
.u-pt-office-addr { font-size: 13px; color: var(--warm-gray); line-height: 1.6; }
.u-text-charcoal { color: var(--charcoal); }
.u-pt-h2-bold { font-size: 24px; font-weight: 700; color: var(--primary); margin-bottom: 16px; }
.u-pt-circle-light { background: rgba(255,255,255,0.1); padding: 12px; border-radius: 50%; }
.u-pt-accent-h4 { font-size: 18px; margin-bottom: 4px; color: var(--accent); }
.u-mt-32 { margin-top: 32px; }
.u-bg-offwhite { background: var(--off-white); }
.u-mt-24 { margin-top: 24px; }
.u-pt-chip-link { display: block; padding: 12px 24px; background: var(--off-white); border-radius: 4px; text-decoration: none; color: var(--primary); }
.u-pt-icon-row { margin-bottom: 24px; display: flex; align-items: flex-start; gap: 16px; }
.u-pt-tile-icon { width: 56px; height: 56px; background: var(--primary); color: white; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.u-pt-display-h3 { font-family: var(--font-display); font-size: 24px; color: var(--primary); margin-bottom: 16px; }
.u-pt-leading-18 { font-size: 15px; line-height: 1.8; color: var(--warm-gray); }
.u-bg-primary-white { background: var(--primary); color: white; }
.u-text-white { color: white; }
.u-pt-products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 32px; margin-top: 48px; }
.u-pt-block-btn { width: 100%; text-align: center; margin-bottom: 12px; display: block; }
.u-pt-kicker { font-family: var(--font-display); font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; }
.u-pt-list-none { list-style: none; padding: 0; margin: 0; }
.u-pt-list-row { margin-bottom: 24px; display: flex; align-items: flex-start; gap: 16px; }
.u-pt-gradient-card { background: linear-gradient(135deg, var(--primary-dark), var(--primary-light)); border-radius: 8px; padding: 40px; color: white; height: 100%; display: flex; flex-direction: column; justify-content: center; }
.u-pt-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.u-pt-center-block { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.u-pt-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.u-pt-services-grid-4 { grid-template-columns: repeat(4, 1fr); }
.u-pt-fill-gradient { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.u-pt-gradient-card-slim { background: linear-gradient(135deg, var(--primary-dark), var(--primary-light)); border-radius: 8px; padding: 32px; color: white; height: 100%; display: flex; flex-direction: column; justify-content: center; }
.u-mt-48 { margin-top: 48px; }
.u-pt-lead { font-size: 16px; color: var(--warm-gray); margin-bottom: 16px; }
.u-pt-center-mb32 { margin-bottom: 32px; text-align: center; }
.u-pt-dark-mb8 { color: var(--primary-dark); margin-bottom: 8px; }
.u-pt-card-white { padding: 20px; text-align: center; border-radius: 8px; background: white; border: 1px solid var(--border); }
.u-pt-bold-mb8 { font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.u-pt-accent-primary { font-size: 15px; color: var(--primary); margin-bottom: 12px; }
.u-pt-lh18-warm { line-height: 1.8; font-size: 15px; color: var(--warm-gray); }
.u-pt-chip { padding: 20px; border-radius: 8px; margin-bottom: 16px; background: rgba(11, 45, 91, 0.04); }
.u-text-primary-light { color: var(--primary-light); }
.u-pt-flex-gap12 { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.u-mb-20 { margin-bottom: 20px; }
.u-pt-logo-center { width: 120px; height: 120px; object-fit: contain; margin: 0 auto 16px; }
.u-mt-16 { margin-top: 16px; }
.u-pt-center-mb40 { margin-bottom: 40px; text-align: center; }
.u-pt-flex-center-gap { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
.u-pt-wrap-center { max-width: 540px; margin: 0 auto 48px; }


/* === Inner page breadcrumb scoped CSS (moved from inline <style> inside <nav>, W3C element-permitted-content compliant) === */
nav[aria-label="Breadcrumb"].breadcrumb { max-width: 1280px; margin: 0 auto; padding: 14px 24px 4px; font-family: 'Inter', sans-serif; font-size: 13px; color: rgba(255,255,255,0.75); }
nav[aria-label="Breadcrumb"].breadcrumb ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px 10px; align-items: center; }
nav[aria-label="Breadcrumb"].breadcrumb li { display: inline-flex; align-items: center; gap: 6px; }
nav[aria-label="Breadcrumb"].breadcrumb li+li::before { content: "\203A"; opacity: .45; margin: 0 2px; }
nav[aria-label="Breadcrumb"].breadcrumb a { color: rgba(255, 207, 138, 0.92); text-decoration: none; transition: color .15s ease; }
nav[aria-label="Breadcrumb"].breadcrumb a:hover { color: #ffb44c; text-decoration: underline; }
nav[aria-label="Breadcrumb"].breadcrumb [aria-current] { color: #fff; font-weight: 600; }
/* Final remaining inline styles: video/td/tr/table/spans */
.u-pt-video-fill { width: 100%; height: 250px; background: var(--primary); display: flex; align-items: center; justify-content: center; border-radius: 8px; overflow: hidden; }
.u-pt-video-fill-small { width: 100%; height: 220px; background: linear-gradient(135deg, var(--primary-dark), var(--primary)); display: flex; align-items: center; justify-content: center; border-radius: 8px; color: white; overflow: hidden; }
.u-pt-img-cover { width: 100%; height: 220px; object-fit: cover; border-radius: 8px; display: block; }
.u-pt-img-cover-160 { width: 100%; height: 160px; object-fit: cover; border-radius: 8px; display: block; }
.u-pt-img-contain { max-width: 100%; object-fit: contain; }
.u-pt-bg-primary { background: var(--primary); }
.u-pt-table { width: 100%; border-collapse: collapse; }
.u-pt-th { background: var(--primary); color: white; padding: 12px; text-align: left; font-size: 13px; font-weight: 600; }
.u-pt-th-light { background: rgba(11,45,91,0.08); color: var(--primary); padding: 12px; text-align: left; font-size: 13px; font-weight: 600; }
.u-pt-td { border: 1px solid var(--border); padding: 12px; font-size: 13px; color: var(--warm-gray); }
.u-pt-td-primary { border: 1px solid var(--border); padding: 12px; font-size: 13px; color: var(--primary); font-weight: 600; }
.u-pt-badge { display: inline-block; padding: 4px 12px; background: var(--primary); color: white; border-radius: 4px; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.u-pt-icon-circle { width: 48px; height: 48px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); flex-shrink: 0; }
.u-pt-stat-card { padding: 24px; background: white; border-radius: 12px; border: 1px solid var(--border); text-align: center; }
.u-pt-note-callout { padding: 20px; background: rgba(179,212,240,0.15); border-left: 4px solid var(--primary); border-radius: 0 8px 8px 0; margin-bottom: 24px; }
.u-pt-chip { display: inline-block; padding: 6px 14px; background: rgba(179,212,240,0.25); color: var(--primary); border-radius: 20px; font-size: 12px; font-weight: 500; margin-right: 8px; margin-bottom: 8px; }


/* === Spanish dólar-negro contact page diverted class alignment (Step 5: Standardize CSS) === */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
.contact-column { display: flex; flex-direction: column; width: 100%; min-width: 0; }
.contact-methods-grid { display: flex; flex-direction: column; gap: 4px; margin-bottom: 8px; }
.contact-method { display: flex; gap: 20px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--border); }
.contact-method:last-child { border-bottom: none; }
.contact-method-icon { width: 52px; height: 52px; flex-shrink: 0; background: var(--accent); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.contact-method-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--primary); margin: 0 0 6px 0; line-height: 1.3; }
.contact-method-text { font-size: 15px; color: var(--charcoal); margin: 0 0 4px 0; line-height: 1.6; font-weight: 500; }
.contact-method-text a { color: var(--primary); text-decoration: none; transition: color .15s ease; }
.contact-method-text a:hover { color: var(--primary-dark); text-decoration: underline; }
.contact-method-sub { font-size: 13px; color: var(--warm-gray); margin: 0; opacity: .9; line-height: 1.5; }
.contact-highlight-panel { margin-top: 16px; padding: 24px; background: rgba(179,212,240,0.14); border-left: 4px solid var(--primary); border-radius: 0 12px 12px 0; }
.contact-highlight-panel-title { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--primary); margin: 0 0 8px 0; }
.contact-highlight-panel-text { font-size: 14px; color: var(--warm-gray); margin: 0; line-height: 1.7; }
.contact-form-card { padding: 40px; background: var(--white); border-radius: 16px; box-shadow: 0 4px 32px rgba(11,45,91,0.08); border: 1px solid var(--border); height: 100%; }
.contact-form-title { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--primary); margin: 0 0 8px 0; text-align: left; line-height: 1.2; }
.contact-form-intro { font-size: 15px; color: var(--warm-gray); margin: 0 0 32px 0; line-height: 1.7; text-align: left; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-group { margin-bottom: 24px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--primary-dark); margin-bottom: 8px; letter-spacing: 0.02em; }
.form-input, .form-textarea, .country-select { width: 100%; padding: 14px 16px; font-size: 15px; color: var(--charcoal); background: var(--white); border: 1px solid var(--border); border-radius: 8px; font-family: var(--font-body); box-sizing: border-box; transition: border-color .2s ease, box-shadow .2s ease; -webkit-appearance: none; appearance: none; }
.form-textarea { min-height: 130px; resize: vertical; line-height: 1.6; }
.country-select { background-image: linear-gradient(45deg, transparent 50%, var(--primary) 50%), linear-gradient(135deg, var(--primary) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; padding-right: 36px; }
.form-input:focus, .form-textarea:focus, .country-select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(179, 212, 240, 0.35); }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(69,80,90,0.55); }
.form-group-mb-24 { margin-bottom: 24px; }
.form-message { display: none; padding: 14px 18px; border-radius: 8px; margin-bottom: 24px; font-weight: 500; font-size: 14px; line-height: 1.5; }
@media (max-width: 1023px) { .contact-wrap { gap: 40px; grid-template-columns: 1fr; } .contact-form-card { padding: 32px; } }
@media (max-width: 767px) { .contact-wrap { gap: 28px; } .form-row { grid-template-columns: 1fr; gap: 0; } .contact-form-card { padding: 24px 20px; } .contact-form-title { font-size: 22px; } .contact-method { padding: 16px 0; } .contact-highlight-panel { padding: 20px; } }



/* === ESPAÑOL DÓLAR-NEGRO LAYOUT PARITY ALIASES (2026-08-25 Iteration 2) === */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-column { display: flex; flex-direction: column; width: 100%; min-width: 0; gap: 28px; }
.contact-methods-grid { display: flex; flex-direction: column; gap: 28px; margin-bottom: 0; }
.contact-method {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: 0 14px 40px rgba(11,45,91,0.06);
  border-bottom: 1px solid var(--border);
}
.contact-method:last-child { border-bottom: 1px solid var(--border); }
.contact-method-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--white);
  color: var(--primary);
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}
.contact-method-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 12px 0;
  line-height: 1.4;
  display: flex; align-items: center; gap: 10px;
}
.contact-method-text {
  font-size: 14px;
  color: var(--warm-gray);
  margin: 0 0 0 0;
  line-height: 1.7;
  font-weight: 400;
}
.contact-method-text a {
  color: var(--warm-gray);
  text-decoration: none;
  transition: color .2s ease;
}
.contact-method-text a:hover { color: var(--primary); text-decoration: none; }
.contact-method-sub {
  font-size: 14px;
  color: var(--warm-gray);
  margin: 6px 0 0 0;
  line-height: 1.7;
  opacity: 1;
}
.contact-highlight-panel {
  margin-top: 0;
  padding: 28px;
  background: var(--white);
  border-left: 4px solid var(--accent);
  border-radius: 6px;
  border: 1px solid var(--border);
  box-shadow: 0 14px 40px rgba(11,45,91,0.06);
}
.contact-highlight-panel-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 12px 0;
  display: flex; align-items: center; gap: 10px;
}
.contact-highlight-panel-text {
  font-size: 14px;
  color: var(--warm-gray);
  margin: 0;
  line-height: 1.7;
}
.contact-form-card {
  padding: 40px;
  background: var(--white);
  border-radius: 6px;
  border: 1px solid var(--border);
  box-shadow: 0 18px 50px rgba(11,45,91,0.08);
  height: auto;
}
.contact-form-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 200;
  color: var(--charcoal);
  margin: 0 0 20px 0;
  text-align: left;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.contact-form-intro {
  font-size: 16px;
  color: var(--warm-gray);
  margin: 0 0 48px 0;
  line-height: 1.8;
  max-width: 700px;
  text-align: left;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group-mb-24 { margin-bottom: 20px; }
.form-label {
  display: block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.form-input, .form-textarea, .country-select {
  width: 100%;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--charcoal);
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: var(--font-body);
  box-sizing: border-box;
  transition: border-color .3s ease, box-shadow .2s ease;
  -webkit-appearance: none;
  appearance: none;
}
.form-textarea { min-height: 120px; resize: vertical; line-height: 1.6; }
.country-select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--primary) 50%),
    linear-gradient(135deg, var(--primary) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 50%,
    calc(100% - 14px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 36px;
}
.form-input:focus, .form-textarea:focus, .country-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 0 rgba(179,212,240,0);
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(69,80,90,0.55); }
.form-message {
  display: none;
  padding: 14px 18px;
  border-radius: 6px;
  margin-bottom: 24px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  background: rgba(46,125,50,0.08);
  color: var(--primary);
  border: 1px solid var(--border);
}
.btn-full { width: 100%; min-width: 100%; }

.page-hero.page-hero--office {
  --page-hero-image: url('../../assets/images/office.webp');
  background-image:
    linear-gradient(180deg, rgba(6, 20, 42, 0.42) 0%, rgba(6, 20, 42, 0.84) 100%),
    var(--page-hero-image, linear-gradient(135deg, #06142A 0%, #0D2B4F 100%));
  background-position: center;
  background-size: cover;
  padding: 160px 40px 88px;
}
.page-hero.page-hero--office .page-hero-inner { max-width: 880px; margin: 0 auto; }
.page-hero.page-hero--office h1 {
  font-weight: 100;
  font-size: clamp(36px, 5vw, 60px);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 16px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.34);
}

.section.map-section {
  padding: 0;
  position: relative;
}
.section.map-section .section-container {
  position: relative;
  max-width: 100%;
  margin: 0;
  padding: 0;
}
.section.map-section iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  display: block;
  background: var(--off-white);
}
.map-info-card {
  position: absolute;
  left: 40px;
  top: 40px;
  background: var(--white);
  padding: 24px 28px;
  border-radius: 6px;
  border: 1px solid var(--border);
  box-shadow: 0 18px 50px rgba(11,45,91,0.10);
  font-family: var(--font-body);
  color: var(--charcoal);
  max-width: 340px;
  z-index: 2;
}
.map-info-card h4 {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 10px 0;
}
.map-info-card p {
  font-size: 14px;
  color: var(--warm-gray);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 1024px) {
  .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-card { padding: 32px; }
  .section.map-section iframe { min-height: 380px; }
  .map-info-card { position: relative; left: auto; top: auto; max-width: 100%; margin: 24px; }
  .page-hero.page-hero--office { padding: 140px 24px 60px; }
}
@media (max-width: 768px) {
  .contact-wrap { gap: 28px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form-card { padding: 24px; }
  .contact-form-title { font-size: 28px; }
  .contact-method { padding: 24px; }
  .contact-highlight-panel { padding: 24px; }
  .page-hero.page-hero--office { padding: 140px 24px 60px; }
  .section.map-section iframe { min-height: 320px; }
  .map-info-card { margin: 20px 24px; padding: 20px; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .navbar-right {
        display: none;
    }
    .mobile-toggle {
        display: flex;
    }
    .mobile-nav {
        display: flex;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .insights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .dot-nav {
        display: none;
    }
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-contact {
        max-width: 420px;
    }
    .cta-contact-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .reveal-left,
    .reveal-right {
        transform: translateY(24px);
    }
    .reveal-left.visible,
    .reveal-right.visible {
        transform: translateY(0);
    }
    .grid.grid-2[style] {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }
    #contact-form div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    .services-grid[style*="repeat(4"] {
        grid-template-columns: 1fr !important;
    }
    .section {
        padding: 72px 24px;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .diff-grid {
        grid-template-columns: 1fr;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .stats {
        padding: 60px 24px;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    .commitment-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .commitment-pillars {
        grid-template-columns: 1fr;
    }
    .insights-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .navbar {
        padding: 0 20px;
    }
    .hero-inner {
        padding: 0 24px;
    }
    .hero {
        padding-top: 104px;
    }
    .cta {
        padding: 72px 24px;
    }
    .services-tabs {
        flex-wrap: wrap;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .page-hero {
        padding: 140px 24px 60px;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 32px;
    }
    .wordmark-name {
        font-size: 14px;
    }
    .navbar-logo {
        height: 38px;
    }
    .navbar.scrolled .navbar-logo {
        height: 34px;
    }
    .footer-logo-img {
        height: 48px;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .section {
        padding: 56px 16px;
    }
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    box-sizing: border-box;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 2500;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.whatsapp-widget img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.18));
}

.whatsapp-widget:hover {
    transform: scale(1.1);
    color: white;
}

@media (max-width: 768px) {
    .whatsapp-widget {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        padding: 10px;
    }
    .whatsapp-widget img {
        width: 100%;
        height: 100%;
    }
}


/* === ESPAÑOL DÓLAR-NEGRO — FINAL PARITY SPECIFICITY OVERRIDES (2026-08-25) === */
@media (max-width: 1024px) {
  .contact-wrap {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .contact-form-card { padding: 32px !important; }
}
@media (max-width: 768px) {
  .contact-wrap { gap: 28px !important; }
  .contact-form-card { padding: 24px !important; }
  .page-hero.page-hero--office {
    padding: 140px 24px 60px !important;
  }
  .page-hero.page-hero--office h1 {
    font-size: clamp(28px, 7vw, 48px) !important;
    letter-spacing: 0.04em !important;
    text-align: center !important;
  }
}
.section-container > .contact-wrap { width: 100%; }
.section-container > .contact-wrap > .contact-column { width: 100%; }
.btn-full.btn-full { min-width: 100% !important; width: 100% !important; }
.form-input.form-input, .form-textarea.form-textarea, .country-select.country-select {
  width: 100% !important;
  box-sizing: border-box !important;
}
