/* ============================================
   LEEHWA North America — Shared Page Styles
   ============================================ */

/* ─── Variables ─── */
:root {
    --blue-50: #eff4fa;
    --blue-100: #d6e2f0;
    --blue-200: #b0c9e2;
    --blue-300: #82a8cf;
    --blue-400: #5989bb;
    --blue-500: #1a4f8b; /* Heavy Navy Blue */
    --blue-600: #143e6e;
    --blue-700: #103259;
    --blue-800: #0c2543;
    --blue-900: #081a2e;
    --dark: #070e17; /* Very deep navy/black */
    --dark-700: #111e30;
    --dark-600: #1b2e47;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --white: #f7f8fa;

    /* Per-page theme — overridden inline */
    --theme: #0073CF;
    --theme-dark: #0061b0;
    --theme-light: rgba(0, 115, 207, .08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden
}

/* ─── Back Bar ─── */
.back-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: linear-gradient(90deg, var(--dark), #0a1628);
    color: white;
}

.back-bar-left {
    display: flex;
    align-items: center;
    gap: 10px
}

.back-bar a.back-bar-home {
    color: rgba(255, 255, 255, .55);
    text-decoration: none;
    font-weight: 500;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color .2s;
    letter-spacing: .3px
}

.back-bar a.back-bar-home:hover {
    color: rgba(255, 255, 255, .9)
}

.back-bar-sep {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, .15)
}

.back-bar-company {
    font-weight: 700;
    color: white;
    font-size: 12px;
    letter-spacing: .8px;
    text-transform: uppercase
}

.back-bar-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    border-left: 1px solid rgba(255, 255, 255, .12);
    padding-left: 16px;
    margin-left: 8px
}

.back-bar-nav-label {
    font-size: 10px;
    color: rgba(255, 255, 255, .35);
    letter-spacing: .8px;
    text-transform: uppercase;
    margin-right: 6px;
    white-space: nowrap
}

.back-bar-link {
    color: rgba(255, 255, 255, .6);
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .8px;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 4px;
    border: 1px solid transparent;
    transition: all .2s;
    white-space: nowrap
}

.back-bar-link:hover {
    color: white;
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .15)
}

.back-bar-link.active {
    color: white;
    background: var(--theme);
    border-color: transparent
}

/* ─── Nav ─── */
nav {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    transition: all .3s
}

body.scrolled nav {
    top: 0 !important;
}

body.scrolled nav,
nav:hover {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid var(--gray-200) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, .08) !important;
}

.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none
}

.logo img {
    height: 40px
}

.logo-text {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--dark)
}

.logo-text span {
    color: var(--blue-500)
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center
}

.nav-links a {
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 500;
    font-size: 15px;
    transition: color .2s;
    position: relative
}

.nav-links a:hover {
    color: var(--blue-600)
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--blue-500);
    transition: width .3s
}

.nav-links a:hover::after {
    width: 100%
}

.nav-cta {
    background: var(--blue-600) !important;
    color: white !important;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all .2s
}

.nav-cta:hover {
    background: var(--blue-700) !important;
    transform: translateY(-1px)
}

.nav-cta::after {
    display: none !important
}

/* ─── Language Switcher ─── */
.lang-switcher {
    position: relative;
    margin-left: 4px
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    border-radius: 6px;
    border: 1px solid var(--gray-200);
    background: var(--gray-50);
    font-size: 12px;
    font-weight: 700;
    color: var(--gray-600);
    cursor: pointer;
    transition: all .2s;
    letter-spacing: .5px
}

.lang-btn:hover {
    border-color: var(--blue-400);
    color: var(--blue-600)
}

.lang-btn svg {
    width: 10px;
    height: 10px;
    transition: transform .2s
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    min-width: 130px;
    padding: 8px 0;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all .3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 300;
}

.lang-selector:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: var(--gray-600);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all .2s;
}

.lang-option:hover {
    background: var(--blue-50);
    color: var(--blue-600);
}

.lang-option.active {
    color: var(--blue-600);
    font-weight: 700;
    background: rgba(0, 115, 207, 0.04);
}

.lang-option.active::after {
    content: '✓';
    margin-left: auto;
    font-size: 11px
}

/* ─── Detail Hero ─── */
.detail-hero {
    min-height: 480px;
    display: flex;
    align-items: center;
    padding: 160px 40px 80px;
    position: relative;
    overflow: hidden;
    color: white
}

.detail-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 15, 30, .88) 0%, rgba(15, 29, 58, .82) 40%, rgba(11, 40, 84, .88) 100%);
    z-index: 1
}

.detail-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0
}

.detail-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 100%
}

.detail-hero-logo {
    display: none
}

/* Company label badge above hero h1 */
.detail-hero-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .8);
    border: 1px solid rgba(255, 255, 255, .28);
    padding: 6px 16px;
    border-radius: 4px;
    margin-bottom: 22px;
    background: rgba(255, 255, 255, .07);
    backdrop-filter: blur(6px)
}

/* ISO / Certification badge row */
.cert-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
    flex-wrap: wrap
}

.cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1.5px solid var(--theme);
    border-radius: 8px;
    background: var(--theme-light);
    font-size: 12px;
    font-weight: 700;
    color: var(--theme);
    letter-spacing: .4px
}

.cert-badge svg {
    flex-shrink: 0
}

.cert-label {
    font-size: 12px;
    color: var(--muted, #64748b);
    font-weight: 500
}

.detail-hero h1 {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -2px;
    margin-bottom: 16px
}

.detail-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, .6);
    max-width: 600px;
    line-height: 1.7
}

/* ─── Section Common ─── */
.section {
    padding: 100px 40px
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto
}

.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--theme);
    margin-bottom: 16px
}

.section-title {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -1.5px;
    color: var(--dark);
    margin-bottom: 16px
}

.section-desc {
    font-size: 17px;
    color: var(--gray-500);
    max-width: 700px;
    line-height: 1.8
}

/* ─── Overview Stats ─── */
.overview-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px
}

/* ── Overview Highlight Cards (qualitative, replaces number stats) ── */
.overview-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 36px
}

.overview-highlight-item {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-left: 4px solid var(--theme);
    border-radius: 0 12px 12px 0;
    padding: 22px 24px;
    transition: all .3s
}

.overview-highlight-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(0, 0, 0, .07)
}

.overview-highlight-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--theme);
    margin-bottom: 8px;
    letter-spacing: -0.3px
}

.overview-highlight-desc {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.65
}

@media (max-width: 768px) {
    .overview-highlights {
        grid-template-columns: 1fr
    }
}

/* ── Overview Stat Cards (legacy, kept for pages not yet migrated) ── */
.overview-stat {
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-top: 3px solid var(--theme);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all .3s
}

.overview-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .06)
}

.overview-stat-number {
    font-size: 36px;
    font-weight: 900;
    color: var(--theme);
    letter-spacing: -1.5px;
    margin-bottom: 4px
}

.overview-stat-label {
    font-size: 13px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600
}

/* ─── Services Grid ─── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px
}

.service-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: 20px;
    padding: 36px;
    transition: all .4s;
    position: relative;
    overflow: hidden
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--theme);
    transform: scaleX(1);
    opacity: .25;
    transition: opacity .4s;
    transform-origin: left
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .07);
    border-color: var(--theme);
    border-top-color: transparent
}

.service-card:hover::before {
    opacity: 1
}

.service-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    background: var(--theme-light);
    color: var(--theme)
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.3px
}

.service-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7
}

/* ─── Locations ─── */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px
}

.location-card {
    border-radius: 20px;
    overflow: hidden;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    transition: all .3s
}

.location-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .08)
}

.location-card-img {
    height: 200px;
    overflow: hidden;
    background: var(--gray-200)
}

.location-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s
}

.location-card:hover .location-card-img img {
    transform: scale(1.05)
}

.location-card-body {
    padding: 24px
}

.location-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px
}

.location-card .loc-region {
    font-size: 13px;
    color: var(--gray-400);
    font-weight: 500;
    margin-bottom: 12px
}

.location-card .loc-address {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-500)
}

.location-card .loc-address svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--theme)
}

/* ─── Group Network ─── */
.group-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-top: 48px
}

.group-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all .3s
}

.group-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .06)
}

.group-card-icon {
    font-size: 28px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center
}

.country-badge {
    display: inline-block;
    padding: 5px 11px;
    background: var(--dark);
    color: rgba(255, 255, 255, .9);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    border-radius: 6px;
    text-transform: uppercase
}

.location-card-placeholder {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark-700), var(--dark));
    color: rgba(255, 255, 255, .2);
    font-size: 40px
}

.group-card h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px
}

.group-card p {
    font-size: 12px;
    color: var(--gray-400);
    line-height: 1.5
}

.group-card a {
    display: inline-block;
    margin-top: 8px;
    font-size: 12px;
    color: var(--theme);
    font-weight: 600;
    text-decoration: none
}

.group-card a:hover {
    text-decoration: underline
}

/* ─── CTA ─── */
.cta-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, var(--dark) 0%, #0a1628 100%)
}

.cta-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: rgba(0, 115, 207, .08);
    border: 1px solid rgba(0, 115, 207, .2);
    border-radius: 24px;
    padding: 64px 48px
}

.cta-inner h2 {
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    letter-spacing: -1px
}

.cta-inner p {
    font-size: 16px;
    color: var(--gray-400);
    margin-bottom: 32px
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--dark);
    padding: 16px 36px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all .3s
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, .15)
}

.btn-outline-w {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: white;
    padding: 16px 36px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, .2);
    transition: all .3s
}

.btn-outline-w:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .3)
}

/* ─── Footer ─── */
footer {
    background: var(--dark);
    color: white;
    padding: 80px 40px 40px
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px
}

.footer-brand p {
    font-size: 14px;
    color: var(--gray-400);
    margin-top: 16px;
    line-height: 1.7
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    color: var(--gray-300)
}

.footer-col ul {
    list-style: none
}

.footer-col li {
    margin-bottom: 10px
}

.footer-col a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 14px;
    transition: color .2s
}

.footer-col a:hover {
    color: white
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--gray-500)
}

/* ─── Hero Stats Strip ─── */
.hero-stats-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background: rgba(0, 0, 0, .45);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, .08)
}

.hero-stats-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 0
}

.hero-stat-item {
    flex: 1;
    padding: 20px 32px 20px 0;
    border-right: 1px solid rgba(255, 255, 255, .08)
}

.hero-stat-item:last-child {
    border-right: none;
    padding-right: 0
}

.hero-stat-value {
    font-size: 22px;
    font-weight: 800;
    color: white;
    letter-spacing: -0.5px;
    line-height: 1.2
}

.hero-stat-label {
    font-size: 10px;
    color: rgba(255, 255, 255, .45);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 3px;
    font-weight: 600
}

/* ─── Photo Gallery ─── */
.photo-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 32px
}

.photo-slot {
    aspect-ratio: 16/9;
    background: linear-gradient(145deg, #1a2236, #0f172a);
    border-radius: 14px;
    border: 1px dashed rgba(255, 255, 255, .12);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: border-color .3s
}

.photo-slot:hover {
    border-color: rgba(255, 255, 255, .25)
}

.photo-slot-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .35)
}

.photo-slot-label {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, .65);
    letter-spacing: .3px
}

.photo-slot-desc {
    font-size: 10px;
    color: rgba(255, 255, 255, .28);
    line-height: 1.5
}

.photo-slot-tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--theme);
    color: white;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1.2px;
    padding: 3px 7px;
    border-radius: 4px;
    text-transform: uppercase
}

/* ─── Video Placeholder ─── */
.video-placeholder {
    background: linear-gradient(145deg, #0d1829, #1a2236);
    border-radius: 20px;
    aspect-ratio: 16 / 9;
    max-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .06);
    cursor: pointer;
    margin-top: 32px;
    transition: border-color .3s
}

.video-placeholder:hover {
    border-color: rgba(255, 255, 255, .15)
}

.video-play-btn {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    border: 2px solid rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 18px;
    transition: all .3s
}

.video-placeholder:hover .video-play-btn {
    background: var(--theme);
    border-color: var(--theme);
    transform: scale(1.08)
}

.video-title {
    font-size: 17px;
    font-weight: 700;
    color: white;
    letter-spacing: -0.3px
}

.video-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, .35);
    margin-top: 6px;
    text-align: center
}

.video-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 6px;
    padding: 5px 11px;
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, .6);
    letter-spacing: 1.5px;
    text-transform: uppercase
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px
}

.video-grid .video-placeholder {
    margin-top: 0;
    max-height: 260px
}

/* ─── Animations ─── */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all .8s cubic-bezier(.16, 1, .3, 1)
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0)
}

/* ─── Responsive ─── */
@media(max-width:1024px) {
    .detail-hero h1 {
        font-size: 36px
    }

    .overview-stats {
        grid-template-columns: repeat(3, 1fr)
    }

    .services-grid {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:768px) {
    .detail-hero {
        min-height: 400px;
        padding: 140px 24px 60px
    }

    .detail-hero h1 {
        font-size: 28px;
        letter-spacing: -1px
    }

    .section {
        padding: 64px 24px
    }

    .section-title {
        font-size: 28px
    }

    .overview-stats {
        grid-template-columns: 1fr
    }

    .services-grid {
        grid-template-columns: 1fr
    }

    .locations-grid {
        grid-template-columns: 1fr
    }

    .nav-links {
        display: none
    }

    .cta-inner {
        padding: 40px 24px
    }

    .cta-inner h2 {
        font-size: 24px
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center
    }

    .footer-grid {
        grid-template-columns: 1fr
    }
}

/* ─── IMAGE PLACEHOLDER SYSTEM ─── */
.img-placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--dark-700);
    background-image: repeating-linear-gradient(
        45deg,
        rgba(255,255,255, 0.03) 0,
        rgba(255,255,255, 0.03) 10px,
        transparent 10px,
        transparent 20px
    );
    border: 1px dashed rgba(255,255,255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255, 0.5);
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.img-placeholder::before {
    content: '';
    display: block;
    width: 32px;
    height: 32px;
    margin-bottom: 12px;
    background: currentColor;
    mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" xmlns="http://www.w3.org/2000/svg"><rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect><circle cx="8.5" cy="8.5" r="1.5"></circle><polyline points="21 15 16 10 5 21"></polyline></svg>') center/contain no-repeat;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" xmlns="http://www.w3.org/2000/svg"><rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect><circle cx="8.5" cy="8.5" r="1.5"></circle><polyline points="21 15 16 10 5 21"></polyline></svg>') center/contain no-repeat;
}

.img-placeholder-light {
    background-color: var(--gray-100);
    background-image: repeating-linear-gradient(
        45deg,
        rgba(0,0,0, 0.02) 0,
        rgba(0,0,0, 0.02) 10px,
        transparent 10px,
        transparent 20px
    );
    border: 1px dashed var(--gray-300);
    color: var(--gray-400);
}

.img-placeholder .placeholder-text {
    font-size: 15px;
    font-weight: 700;
    background: rgba(255, 255, 255, .1);
    border: 2px solid rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 18px;
    transition: all .3s
}

.video-placeholder:hover .video-play-btn {
    background: var(--theme);
    border-color: var(--theme);
    transform: scale(1.08)
}

.video-title {
    font-size: 17px;
    font-weight: 700;
    color: white;
    letter-spacing: -0.3px
}

.video-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, .35);
    margin-top: 6px;
    text-align: center
}

.video-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 6px;
    padding: 5px 11px;
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, .6);
    letter-spacing: 1.5px;
    text-transform: uppercase
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px
}

.video-grid .video-placeholder {
    margin-top: 0;
    max-height: 260px
}

/* ─── Animations ─── */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all .8s cubic-bezier(.16, 1, .3, 1)
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0)
}

/* ─── Responsive ─── */
@media(max-width:1024px) {
    .detail-hero h1 {
        font-size: 36px
    }

    .overview-stats {
        grid-template-columns: repeat(3, 1fr)
    }

    .services-grid {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:768px) {
    .detail-hero {
        min-height: 400px;
        padding: 140px 24px 60px
    }

    .detail-hero h1 {
        font-size: 28px;
        letter-spacing: -1px
    }

    .section {
        padding: 64px 24px
    }

    .section-title {
        font-size: 28px
    }

    .overview-stats {
        grid-template-columns: 1fr
    }

    .services-grid {
        grid-template-columns: 1fr
    }

    .locations-grid {
        grid-template-columns: 1fr
    }

    .nav-links {
        display: none
    }

    .cta-inner {
        padding: 40px 24px
    }

    .cta-inner h2 {
        font-size: 24px
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center
    }

    .footer-grid {
        grid-template-columns: 1fr
    }
}

/* ─── IMAGE PLACEHOLDER SYSTEM ─── */
.img-placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--dark-700);
    background-image: repeating-linear-gradient(
        45deg,
        rgba(255,255,255, 0.03) 0,
        rgba(255,255,255, 0.03) 10px,
        transparent 10px,
        transparent 20px
    );
    border: 1px dashed rgba(255,255,255, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255, 0.5);
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.img-placeholder::before {
    content: '';
    display: block;
    width: 32px;
    height: 32px;
    margin-bottom: 12px;
    background: currentColor;
    mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" xmlns="http://www.w3.org/2000/svg"><rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect><circle cx="8.5" cy="8.5" r="1.5"></circle><polyline points="21 15 16 10 5 21"></polyline></svg>') center/contain no-repeat;
    -webkit-mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" xmlns="http://www.w3.org/2000/svg"><rect x="3" y="3" width="18" height="18" rx="2" ry="2"></rect><circle cx="8.5" cy="8.5" r="1.5"></circle><polyline points="21 15 16 10 5 21"></polyline></svg>') center/contain no-repeat;
}

.img-placeholder-light {
    background-color: var(--gray-100);
    background-image: repeating-linear-gradient(
        45deg,
        rgba(0,0,0, 0.02) 0,
        rgba(0,0,0, 0.02) 10px,
        transparent 10px,
        transparent 20px
    );
    border: 1px dashed var(--gray-300);
    color: var(--gray-400);
}

.img-placeholder .placeholder-text {
    font-size: 15px;
    font-weight: 700;
    color: inherit;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.img-placeholder .placeholder-dim {
    font-size: 12px;
    opacity: 0.8;
}




/* ─── CSS TEXT LOGOS ─── */
.css-logo {
    display: inline-flex;
    align-items: center;
    gap: 0px;
}
.css-logo img {
    height: 28px !important;
    width: auto !important;
    object-fit: contain;
    mix-blend-mode: normal !important;
}
.css-logo-text {
    font-size: 24px;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    font-style: italic;
    letter-spacing: -1px;
    display: inline-flex;
    align-items: baseline;
    line-height: 1;
    transform: translateY(0.75em); /* Shift text down proportionally to font size */
}
.css-logo-text .l-primary {
    color: #004080 !important;
    text-transform: uppercase;
}
.css-logo-text .l-sub {
    color: #7d8288 !important;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-weight: 700;
    font-style: italic;
    letter-spacing: -0.5px;
    margin-left: 5px;
    text-transform: uppercase;
}
.logos-bar-item .css-logo-text {
    font-size: 18px;
}
.logos-bar-item .css-logo img {
    height: 22px !important;
}
.sub-card-tag .css-logo-text {
    font-size: 15px;
}
.sub-card-tag .css-logo img {
    height: 18px !important;
    margin-right: 2px;
}

/* --- PREMIUM SCROLL OVERRIDES --- */
nav {
    background: transparent !important;
    backdrop-filter: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.15) !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

body.scrolled nav,
nav:hover {
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid var(--gray-200) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08) !important;
}

nav .logo-text, nav .logo-text span {
    color: white !important;
    transition: color 0.4s !important;
}
body.scrolled nav .logo-text, nav:hover .logo-text { color: var(--dark) !important; }
body.scrolled nav .logo-text span, nav:hover .logo-text span { color: var(--blue-500) !important; }

nav .css-logo img {
    filter: brightness(0) invert(1) !important;
    transition: filter 0.4s !important;
}
body.scrolled nav .css-logo img, nav:hover .css-logo img { filter: none !important; }

nav .css-logo-text .l-primary, nav .css-logo-text .l-sub {
    color: white !important;
    transition: color 0.4s !important;
}
body.scrolled nav .css-logo-text .l-primary, nav:hover .css-logo-text .l-primary { color: #004080 !important; }
body.scrolled nav .css-logo-text .l-sub, nav:hover .css-logo-text .l-sub { color: #7d8288 !important; }

.nav-links > li > a {
    color: rgba(255,255,255,0.85) !important;
    transition: color 0.3s !important;
}
.nav-links > li > a:hover { color: white !important; }
body.scrolled .nav-links > li > a, nav:hover .nav-links > li > a { color: var(--gray-600) !important; }
body.scrolled .nav-links > li > a:hover, nav:hover .nav-links > li > a:hover { color: var(--blue-600) !important; }

.nav-cta {
    background: rgba(255,255,255,0.1) !important;
    color: white !important;
    border: 1px solid rgba(255,255,255,0.3) !important;
}
body.scrolled .nav-cta, nav:hover .nav-cta {
    background: var(--blue-600) !important;
    color: white !important;
    border: none !important;
}
body.scrolled .nav-cta:hover, nav:hover .nav-cta:hover { background: var(--blue-700) !important; }

.lang-btn {
    background: rgba(255,255,255,0.1) !important;
    color: white !important;
    border: 1px solid rgba(255,255,255,0.3) !important;
}
body.scrolled .lang-btn, nav:hover .lang-btn {
    background: white !important;
    color: var(--gray-600) !important;
    border: 1px solid var(--gray-200) !important;
}
body.scrolled .lang-btn:hover, nav:hover .lang-btn:hover {
    border-color: var(--blue-400) !important;
    color: var(--dark) !important;
}

/* Partners Marquee */
.partners-marquee-section {
    width: 100%;
    padding: 40px 0;
    background: #ffffff;
    border-bottom: 1px solid var(--gray-200);
    overflow: hidden;
    position: relative;
}
.partners-marquee-section::before,
.partners-marquee-section::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
}
.partners-marquee-section::before {
    left: 0;
    background: linear-gradient(to right, white, rgba(255,255,255,0));
}
.partners-marquee-section::after {
    right: 0;
    background: linear-gradient(to left, white, rgba(255,255,255,0));
}
.marquee-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    width: max-content;
    animation: marquee 30s linear infinite;
}
.marquee-container:hover {
    animation-play-state: paused;
}
.marquee-item {
    padding: 0 48px;
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-300);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    flex-shrink: 0;
    transition: color 0.3s ease;
}
.marquee-item:hover {
    color: var(--primary-color);
}
.marquee-item img {
    height: 50px;
    width: 140px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.4);
    transition: filter 0.4s ease;
    mix-blend-mode: multiply;
}
.marquee-item:hover img {
    filter: grayscale(0%) opacity(1);
}
/* Dark background variant */
.partners-marquee-section[style*="dark"] .marquee-item img {
    mix-blend-mode: normal;
    filter: grayscale(100%) brightness(2) opacity(0.5);
}
.partners-marquee-section[style*="dark"] .marquee-item:hover img {
    filter: grayscale(0%) brightness(1.2) opacity(1);
}
.partners-marquee-section[style*="dark"]::before {
    background: linear-gradient(to right, var(--dark), rgba(0,0,0,0));
}
.partners-marquee-section[style*="dark"]::after {
    background: linear-gradient(to left, var(--dark), rgba(0,0,0,0));
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Nav Dropdown */
.nav-dropdown-wrapper {
    position: relative;
}
.nav-dropdown-wrapper > a {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-dropdown-wrapper > a::after {
    content: "▼";
    font-size: 10px;
    opacity: 0.5;
    transition: transform 0.2s;
}
.nav-dropdown-wrapper:hover > a::after {
    transform: rotate(180deg);
}
.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 1000;
}
.nav-dropdown-wrapper:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
    display: block !important;
    padding: 10px 20px;
    color: var(--gray-600) !important;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}
.nav-dropdown a:hover {
    background: var(--blue-50);
    color: var(--blue-600) !important;
}

/* --- HQ Card --- */
.group-hq-card {
    background: linear-gradient(135deg, var(--dark-700), var(--dark));
    border-radius: 16px;
    padding: 32px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}
.group-hq-card h4 { color: var(--white); font-size: 24px; margin-bottom: 8px; }
.group-hq-card p { color: var(--gray-300); font-size: 15px; margin-bottom: 16px; }
.group-hq-card a { color: var(--l-primary); font-weight: 600; text-decoration: none; }
.group-hq-card .group-card-icon {
    width: 64px; height: 64px; background: rgba(255,255,255,0.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.group-hq-card .group-card-icon img { height: 32px; object-fit: contain; filter: brightness(0) invert(1); }
@media (max-width: 768px) {
    .group-hq-card { flex-direction: column; text-align: left; align-items: flex-start; }
}

/* --- Cinematic Full-Bleed Layout --- */
.full-bleed-container {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.full-bleed-section {
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 10%;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-bottom: 1px solid var(--gray-800);
}

.full-bleed-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0) 100%);
    z-index: 1;
}

.full-bleed-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    color: var(--white);
}

.full-bleed-content h3 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.full-bleed-content .subtitle {
    font-size: 20px;
    font-weight: 500;
    color: var(--l-primary);
    margin-bottom: 20px;
}

.full-bleed-content p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--gray-300);
    margin-bottom: 32px;
}

.full-bleed-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.full-bleed-tags span {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.full-bleed-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: var(--l-primary);
    color: var(--white);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
}

.full-bleed-link:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .full-bleed-section { padding: 40px 24px; min-height: 70vh; background-attachment: scroll; }
    .full-bleed-overlay { background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.6) 100%); }
    .full-bleed-content h3 { font-size: 32px; }
}

/* Cleanup Vision Particles */
.vision-particle { display: none !important; }
.vision-section { background: var(--black); padding: 120px 0; }
.vision-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }

/* --- Global Interactive Map --- */
.global-map-section {
    background: var(--black);
    padding: 100px 24px;
    color: var(--white);
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--gray-800);
}

.map-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.map-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(90deg, #fff, #9ca3af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.map-subtitle {
    font-size: 18px;
    color: var(--gray-400);
    margin-bottom: 60px;
}

.svg-map-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 2 / 1;
    background: radial-gradient(circle at center, rgba(30,41,59,0.5) 0%, rgba(0,0,0,0) 70%);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
}

.network-map {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.route-line {
    fill: none;
    stroke: rgba(255,255,255,0.1);
    stroke-width: 2;
}

.route-line-animated {
    fill: none;
    stroke: var(--l-primary);
    stroke-width: 3;
    stroke-dasharray: 10 15;
    animation: dash-flow 2s linear infinite;
}

.ocean-route { stroke: #38bdf8; }
.land-route { stroke: #fbbf24; }

@keyframes dash-flow {
    from { stroke-dashoffset: 50; }
    to { stroke-dashoffset: 0; }
}

.map-node {
    fill: var(--white);
    transition: all 0.3s ease;
}

.map-node-pulse {
    fill: var(--l-primary);
    opacity: 0.4;
    animation: node-pulse 2s ease-out infinite;
}

@keyframes node-pulse {
    0% { r: 5; opacity: 0.8; }
    100% { r: 25; opacity: 0; }
}

.map-label {
    fill: var(--gray-300);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}
.map-label-sub {
    fill: var(--gray-500);
    font-size: 11px;
}

.world-map-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: url('images/world-map.svg');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}
.network-map {
    position: relative;
    z-index: 1;
}

/* === RIPPLE WAVE: USA node (amber) === */
.ripple-wave {
    fill: none;
    stroke: #fbbf24;
    stroke-width: 1.5;
    opacity: 0;
    animation: ripple-expand 3s ease-out infinite;
}
/* === RIPPLE WAVE: Mexico node (orange) === */
.ripple-wave.ripple-mx {
    stroke: #fb923c;
    animation-name: ripple-expand-mx;
}

@keyframes ripple-expand {
    0%   { r: 20;  opacity: 0.7; stroke-width: 2; }
    60%  { opacity: 0.3; }
    100% { r: 120; opacity: 0;   stroke-width: 0.5; }
}
@keyframes ripple-expand-mx {
    0%   { r: 15;  opacity: 0.6; stroke-width: 2; }
    60%  { opacity: 0.25; }
    100% { r: 90;  opacity: 0;   stroke-width: 0.5; }
}

/* === SPOKE LINES from USA (amber) === */
.spoke-line {
    fill: none;
    stroke: #fbbf24;
    stroke-width: 1;
    stroke-dasharray: 120;
    stroke-dashoffset: 120;
    opacity: 0.5;
    animation: spoke-draw 4s ease-out infinite;
}
/* === SPOKE LINES from Mexico (orange) === */
.spoke-line.spoke-mx {
    stroke: #fb923c;
    stroke-dasharray: 80;
    stroke-dashoffset: 80;
    animation-name: spoke-draw-mx;
}

@keyframes spoke-draw {
    0%   { stroke-dashoffset: 120; opacity: 0; }
    20%  { opacity: 0.6; }
    70%  { stroke-dashoffset: 0;   opacity: 0.4; }
    100% { stroke-dashoffset: -10; opacity: 0; }
}
@keyframes spoke-draw-mx {
    0%   { stroke-dashoffset: 80; opacity: 0; }
    20%  { opacity: 0.5; }
    70%  { stroke-dashoffset: 0;  opacity: 0.35; }
    100% { stroke-dashoffset: -5; opacity: 0; }
}

/* === GLOW OVERLAY breathe === */
.glow-overlay {
    animation: glow-breathe 4s ease-in-out infinite;
}
@keyframes glow-breathe {
    0%, 100% { opacity: 0.6; }
    50%       { opacity: 1; }
}

/* ======================================
   B2B Value Proposition Section
   ====================================== */
.b2b-value-section {
    background: var(--dark);
    padding: 120px 24px;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.b2b-value-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.b2b-header {
    text-align: center;
    margin-bottom: 72px;
}
.b2b-main-title {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin: 16px 0 24px;
    letter-spacing: -1px;
}
.b2b-sub-title {
    font-size: 18px;
    color: var(--gray-400);
    line-height: 1.7;
}

/* 4-Card Grid */
.b2b-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-bottom: 64px;
}
.b2b-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 36px 32px;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.b2b-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.06);
}
/* Highlight Card (Card 2) */
.b2b-card--highlight {
    background: linear-gradient(135deg, rgba(var(--l-primary-rgb, 0,115,207), 0.15), rgba(var(--l-primary-rgb, 0,115,207), 0.05));
    border-color: rgba(0,115,207,0.4);
}
.b2b-card--highlight:hover {
    border-color: rgba(0,115,207,0.7);
}
.b2b-card-icon {
    font-size: 36px;
    margin-bottom: 16px;
    display: block;
}
.b2b-card-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--l-primary);
    background: rgba(0,115,207,0.12);
    border: 1px solid rgba(0,115,207,0.3);
    border-radius: 20px;
    padding: 4px 12px;
    margin-bottom: 20px;
}
.b2b-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 16px;
}
.b2b-card p {
    font-size: 14px;
    color: var(--gray-400);
    line-height: 1.75;
    margin-bottom: 20px;
}
.b2b-card-en {
    font-size: 12px;
    color: var(--gray-600);
    font-style: italic;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 16px;
}

/* CTA */
.b2b-cta {
    text-align: center;
}
.b2b-cta-btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: var(--l-primary);
    color: white;
    text-decoration: none;
    padding: 20px 48px;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.3px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0,115,207,0.35);
}
.b2b-cta-btn span {
    font-size: 12px;
    font-weight: 400;
    opacity: 0.75;
    letter-spacing: 0.5px;
}
.b2b-cta-btn:hover {
    background: #005fa3;
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0,115,207,0.5);
}
.b2b-cta-caption {
    margin-top: 20px;
    font-size: 14px;
    color: var(--gray-500);
}

@media (max-width: 768px) {
    .b2b-cards-grid { grid-template-columns: 1fr; }
    .b2b-main-title { font-size: 32px; }
}
