/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
:root {
    /* Brand */
    --primary: #1a2b3b;      /* navy */
    --primary-2: #243a4d;
    --secondary: #e8722a;    /* brand orange */
    --secondary-dark: #c95f1e;
    --secondary-light: #f0913e;
    /* Netherlands flag palette (home section theming) */
    --nl-red: #ae1c28;
    --nl-red-soft: #fbeced;
    --nl-blue: #21468b;
    --nl-blue-soft: #eaeef7;
    --nl-white: #ffffff;
    /* Footer (Prince's flag orange) */
    --footer-orange-1: #f4881f;
    --footer-orange-2: #e8722a;
    /* Neutrals */
    --ink: #111;
    --muted: #666;
    --light-bg: #f8f9fb;
    --border: #eee;
}
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #111;
    background: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}
a { text-decoration: none; color: inherit; transition: opacity 0.3s; }
a:hover { opacity: 0.8; }
img { max-width: 100%; display: block; }
ul, li { list-style: none; }

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 60px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background 0.4s, box-shadow 0.4s;
}
.header.transparent { background: #1a2b3b; }
.header.solid { background: #1a2b3b; box-shadow: 0 2px 12px rgba(26,43,59,0.4); }
.header .nav-link,
.header .logo { color: #fff; }

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 2px;
    flex-shrink: 0;
}

/* Logo image — assets/img/logo.png dosyanızı koyun */
.logo-img {
    height: 42px;
    width: auto;
    display: block;
    object-fit: contain;
}
.logo-fallback {
    display: flex;
    align-items: center;
}
.logo-fallback svg {
    height: 42px;
    width: auto;
}

/* ===== LANGUAGE SWITCH ===== */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: 12px;
    flex-shrink: 0;
}
.lang-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    padding: 4px 6px;
    transition: all 0.3s;
}
.lang-btn:hover {
    color: #fff;
}
.lang-btn.active {
    color: #fff;
    position: relative;
}
.lang-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 4px;
    right: 4px;
    height: 2px;
    background: #e8722a;
}
.lang-divider {
    color: rgba(255,255,255,0.3);
    font-size: 12px;
    user-select: none;
}

/* ===== NAVIGATION ===== */
.nav { display: flex; align-items: center; gap: 0; height: 100%; }

.nav-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-link {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2px;
    transition: color 0.3s, opacity 0.3s;
    white-space: nowrap;
    padding: 0 14px;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 14px;
    right: 14px;
    height: 3px;
    background: #e8722a;
    transform: scaleX(0);
    transition: transform 0.3s;
}

.nav-item:hover .nav-link::after,
.nav-item.active .nav-link::after {
    transform: scaleX(1);
}

.nav-link.has-dropdown::before {
    content: '';
    display: none;
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 300px;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    padding: 12px 0;
    border-top: 3px solid #e8722a;
}

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

.dropdown-link {
    display: block;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 400;
    color: #444;
    transition: all 0.25s;
    position: relative;
}

.dropdown-link:hover {
    background: #f6f8fa;
    color: #e8722a;
    padding-left: 34px;
    opacity: 1;
}

.dropdown-link::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: #e8722a;
    transition: width 0.25s;
}

.dropdown-link:hover::before {
    width: 10px;
}

/* ===== MEGA MENU ===== */
.mega-menu {
    position: fixed;
    top: 75px;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 8px 40px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.35s ease;
    border-top: 3px solid #e8722a;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    padding: 0;
    z-index: 999;
}

.nav-item.has-mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-col {
    padding: 32px 36px;
    border-right: 1px solid #eee;
}
.mega-col:last-child {
    border-right: none;
}

.mega-col-title {
    font-size: 14px;
    font-weight: 700;
    color: #e8722a;
    letter-spacing: 0.8px;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f0f0f0;
}

.mega-link {
    display: block;
    padding: 9px 0 9px 0;
    font-size: 14px;
    font-weight: 400;
    color: #444;
    transition: all 0.25s;
    position: relative;
    padding-left: 0;
}

.mega-link:hover {
    color: #e8722a;
    padding-left: 14px;
    opacity: 1;
}

.mega-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: #e8722a;
    transition: width 0.25s;
}

.mega-link:hover::before {
    width: 8px;
}

/* Mobile hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    background: none;
    border: none;
}
.hamburger span {
    width: 24px;
    height: 2px;
    background: currentColor;
    transition: all 0.3s;
}

/* ===== SCROLL SNAP — Homepage ===== */
.snap-page { overflow: hidden; height: 100vh; height: 100dvh; }
.snap-container {
    height: 100vh;
    height: 100dvh;
    overflow-y: hidden; /* JS controls scrolling */
    scroll-behavior: auto;
}
.snap-section {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
/* Footer snap section — full viewport, footer centered */
.snap-footer {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a2b3b;
}
.snap-footer .footer {
    width: 100%;
}
/* Override section paddings for snap - vertical centering via flexbox */
.snap-section.home-headline,
.snap-section.home-mv,
.snap-section.home-amsterdam,
.snap-section.home-pillars,
.snap-section.home-companies,
.snap-section.home-stats,
.snap-section.home-cta {
    padding-top: 40px;
    padding-bottom: 40px;
}
/* Hero fills viewport naturally */
.snap-section.hero-video {
    min-height: 100vh; min-height: 100dvh;
    height: 100vh; height: 100dvh;
    margin-top: 0;
}

/* ===== HERO VIDEO BANNER ===== */
.hero-video {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}
.hero-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.55) 100%);
    z-index: 1;
}
.hero-video-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 80px 60px;
    color: #fff;
    max-width: 800px;
}
.hero-video-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}
.hero-video-desc {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    margin-bottom: 32px;
    max-width: 600px;
}
.hero-video-btn {
    display: inline-block;
    padding: 16px 36px;
    border: 1.5px solid #fff;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}
.hero-video-btn:hover {
    background: #fff;
    color: #111;
    opacity: 1;
}

/* Hero dual buttons */
.hero-video-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.hero-btn-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #e8722a;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 1.5px solid #e8722a;
    transition: all 0.3s;
}
.hero-btn-primary:hover {
    background: #c95f1e;
    border-color: #c95f1e;
    opacity: 1;
}
.hero-btn-secondary {
    display: inline-block;
    padding: 16px 36px;
    border: 1.5px solid rgba(255,255,255,0.6);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}
.hero-btn-secondary:hover {
    background: #fff;
    color: #1a2b3b;
    border-color: #fff;
    opacity: 1;
}

/* ===== SECTION BACKGROUND IMAGE + WHITE OVERLAY ===== */
.has-bg-image {
    position: relative;
}
.section-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}
.section-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.65);
    z-index: 1;
}
.has-bg-image > *:not(.section-bg-image):not(.section-bg-overlay) {
    position: relative;
    z-index: 2;
}

/* ===== HOME: HEADLINE + CTAs ===== */
.home-headline {
    padding: 100px 60px;
    background: #fff;
    width: 100%;
}
.home-headline-inner {
    max-width: 900px;
    width: 100%;
}
.home-headline-text h2 {
    font-size: 42px;
    font-weight: 800;
    color: #1a2b3b;
    line-height: 1.2;
    margin-bottom: 24px;
}
.home-headline-text p {
    font-size: 17px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 700px;
}
.home-headline-btns {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}
.hero-btn-secondary-dark {
    display: inline-block;
    padding: 16px 36px;
    border: 1.5px solid #1a2b3b;
    color: #1a2b3b;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}
.hero-btn-secondary-dark:hover {
    background: #1a2b3b;
    color: #fff;
    opacity: 1;
}

/* ===== HOME: MISSION & VISION ===== */
.home-mv {
    padding: 100px 60px;
    background: #fff;
    width: 100%;
}
.home-mv-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}
.home-mv-header {
    text-align: center;
    margin-bottom: 60px;
}
.home-mv-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1a2b3b;
    line-height: 1.25;
    max-width: 700px;
    margin: 0 auto;
}
.home-mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}
.home-mv-card {
    padding: 48px 40px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s ease;
}
.home-mv-card:hover { transform: translateY(-10px); box-shadow: 0 24px 50px rgba(26,43,59,0.22); }
.home-mv-card.mission {
    background: #1a2b3b;
    color: #fff;
}
.home-mv-card.vision {
    background: linear-gradient(135deg, #e8722a, #f0913e);
    color: #fff;
}
.home-mv-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 22px;
}
.home-mv-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}
.home-mv-card p {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.9;
}

/* ===== HOME: AMSTERDAM GALLERY ===== */
.home-amsterdam {
    padding: 100px 60px;
    background: #f8f9fb;
    width: 100%;
    flex-direction: column;
}
.home-amsterdam-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}
.home-amsterdam-text {
    max-width: 700px;
    margin-bottom: 48px;
}
.home-amsterdam-text h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1a2b3b;
    margin-bottom: 20px;
}
.home-amsterdam-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}
/* Gallery wrapper — holds arrows overlaid on scrollable area */
.gallery-wrapper {
    position: relative;
}
.home-amsterdam-gallery {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 0;
    width: 100%;
}
.home-amsterdam-gallery::-webkit-scrollbar { display: none; }

/* Gallery arrows — absolute positioned over carousel edges */
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: rgba(26, 43, 59, 0.85);
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    z-index: 5;
    margin-top: 0;
}
.gallery-arrow:hover {
    background: rgba(232, 114, 42, 0.9);
    box-shadow: 0 4px 24px rgba(232,114,42,0.35);
}
.gallery-arrow-left { left: 12px; }
.gallery-arrow-right { right: 12px; }
.gallery-arrow.hidden {
    opacity: 0;
    pointer-events: none;
}
.gallery-track {
    display: flex;
    gap: 16px;
    width: max-content;
}
.gallery-item {
    flex-shrink: 0;
    width: 280px;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s;
}
.gallery-item:hover { transform: scale(1.03); }
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== HERO SCROLL DOWN ARROW ===== */
.hero-scroll-down {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.6);
    background: transparent;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: heroArrowBounce 2s ease-in-out infinite;
    transition: all 0.3s;
}
.hero-scroll-down:hover {
    background: rgba(232,114,42,0.8);
    border-color: #e8722a;
}
@keyframes heroArrowBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ===== LIGHTBOX (Fullscreen Image Preview) ===== */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0,0,0,0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}
.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.lightbox-close:hover {
    background: rgba(232,114,42,0.8);
}
.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.lightbox-content img {
    max-width: 90vw;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 60px rgba(0,0,0,0.5);
    transition: opacity 0.2s;
}
.lightbox-counter {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin-top: 16px;
    letter-spacing: 2px;
    font-weight: 500;
}
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.lightbox-nav:hover {
    background: rgba(232,114,42,0.8);
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* ===== HOME: 4 PILLARS — Image Hover Cards ===== */
.home-pillars {
    padding: 0;
    background: #1a2b3b;
    width: 100%;
}
.home-pillars-inner {
    max-width: 100%;
    width: 100%;
}
.home-pillars-header {
    text-align: center;
    margin-bottom: 40px;
}
.home-pillars-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
}
.home-pillars-grid-v2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    width: 100%;
    min-height: 400px;
}
.pillar-img-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    min-height: 350px;
}
.pillar-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
    backface-visibility: hidden;
}
.pillar-img-card:hover img {
    transform: scale(1.06);
}
.pillar-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26,43,59,0.95) 0%, rgba(26,43,59,0.4) 50%, rgba(26,43,59,0.15) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px 24px;
    color: #fff;
    backface-visibility: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.pillar-img-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(232,114,42,0.92) 0%, rgba(26,43,59,0.7) 60%, rgba(26,43,59,0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}
.pillar-img-card:hover .pillar-img-overlay::after {
    opacity: 1;
}
.pillar-img-icon {
    position: relative;
    z-index: 1;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 16px;
    backdrop-filter: blur(4px);
    transition: all 0.4s;
}
.pillar-img-card:hover .pillar-img-icon {
    background: rgba(255,255,255,0.25);
    transform: scale(1.1);
}
.pillar-img-overlay h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}
.pillar-img-overlay p {
    font-size: 13px;
    line-height: 1.6;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.4s, max-height 0.4s;
    color: rgba(255,255,255,0.9);
    position: relative;
    z-index: 1;
}
.pillar-img-card:hover .pillar-img-overlay p {
    opacity: 1;
    max-height: 80px;
}

/* ===== HOME: COMPANIES ===== */
.home-companies {
    padding: 100px 60px;
    background: linear-gradient(135deg, #e8722a 0%, #d4621f 50%, #c05518 100%);
    width: 100%;
}
.home-companies-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}
.home-companies-inner h2 {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 48px;
}
.companies-logo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 8px;
}
.company-logo-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 36px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    transition: all 0.3s;
    cursor: pointer;
}
.company-logo-card:hover {
    border-color: #e8722a;
    box-shadow: 0 8px 30px rgba(232,114,42,0.12);
    transform: translateY(-4px);
}
.company-logo-card i {
    font-size: 32px;
    color: #1a2b3b;
    transition: color 0.3s;
}
.company-logo-card:hover i { color: #e8722a; }
.company-logo-card span {
    font-size: 14px;
    font-weight: 600;
    color: #444;
}

/* ===== HOME: COMPANIES v2 — Grayscale Logo Grid ===== */
.companies-logo-grid-v2 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}
.company-logo-v2 {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 0;
    border: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}
.company-logo-v2 i {
    font-size: 32px;
    color: #fff;
    opacity: 0.5;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.company-logo-v2:hover {
    transform: translateY(-4px) scale(1.1);
}
.company-logo-v2:hover i {
    opacity: 1;
    color: #fff;
}

/* ===== HOME: CTA BANNER ===== */
.home-cta {
    padding: 100px 60px;
    background: linear-gradient(135deg, #1a2b3b 0%, #243a4d 40%, #e8722a 100%);
    text-align: center;
    color: #fff;
    width: 100%;
}
.home-cta-inner {
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
}
.home-cta h2 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 16px;
}
.home-cta p {
    font-size: 17px;
    opacity: 0.85;
    margin-bottom: 36px;
}

/* ===== HERO 3-PANEL ===== */
.hero-panels {
    display: flex;
    width: 100%;
    height: 85vh;
    min-height: 550px;
    margin-top: 75px;
}

.hero-panel {
    flex: 1;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-panel:hover {
    flex: 1.5;
}

.hero-panel-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    transition: transform 0.6s ease;
}

.hero-panel:hover .hero-panel-bg {
    transform: scale(1.05);
}

/* Panel backgrounds */
.hero-panel:nth-child(1) .hero-panel-bg {
    background: linear-gradient(135deg, #1a2a3a 0%, #2c3e50 40%, #34495e 100%);
}
.hero-panel:nth-child(1)::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 800'%3E%3Crect fill='%231a2a3a' width='600' height='800'/%3E%3Ccircle cx='300' cy='200' r='150' fill='%23243447' opacity='0.5'/%3E%3Ccircle cx='200' cy='500' r='200' fill='%232c3e50' opacity='0.3'/%3E%3Cpath d='M0 600 Q150 500 300 550 T600 500 L600 800 L0 800Z' fill='%23162535' opacity='0.6'/%3E%3C/svg%3E") center/cover;
    z-index: 0;
}

.hero-panel:nth-child(2) .hero-panel-bg {
    background: linear-gradient(135deg, #0c2340 0%, #1a3a5c 40%, #1e5080 100%);
}
.hero-panel:nth-child(2)::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 800'%3E%3Crect fill='%230c2340' width='600' height='800'/%3E%3Crect x='50' y='150' width='120' height='200' rx='4' fill='%23153050' opacity='0.6'/%3E%3Crect x='200' y='100' width='100' height='280' rx='4' fill='%231a3a5c' opacity='0.4'/%3E%3Crect x='350' y='200' width='140' height='180' rx='4' fill='%23153050' opacity='0.5'/%3E%3Cpath d='M0 650 Q200 580 400 620 T600 570 L600 800 L0 800Z' fill='%230a1c33' opacity='0.5'/%3E%3C/svg%3E") center/cover;
    z-index: 0;
}

.hero-panel:nth-child(3) .hero-panel-bg {
    background: linear-gradient(135deg, #0a3d5c 0%, #0e6b7a 40%, #1a9ba5 100%);
}
.hero-panel:nth-child(3)::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 800'%3E%3Crect fill='%230a3d5c' width='600' height='800'/%3E%3Ccircle cx='400' cy='300' r='180' fill='%230e5a6e' opacity='0.4'/%3E%3Ccircle cx='150' cy='500' r='120' fill='%230d4e62' opacity='0.3'/%3E%3Cpath d='M0 600 Q200 520 350 580 T600 530 L600 800 L0 800Z' fill='%23083348' opacity='0.5'/%3E%3C/svg%3E") center/cover;
    z-index: 0;
}

/* Panel overlay */
.hero-panel-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1;
    transition: background 0.4s;
}

.hero-panel:hover .hero-panel-overlay {
    background: rgba(0,0,0,0.25);
}

/* Divider lines between panels */
.hero-panel + .hero-panel::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10%;
    bottom: 10%;
    width: 1px;
    background: rgba(255,255,255,0.15);
    z-index: 3;
}

/* Panel content */
.hero-panel-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px 40px;
    z-index: 2;
    color: #fff;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
}

.hero-panel-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.4s;
}

.hero-panel:hover .hero-panel-icon {
    background: #e8722a;
    border-color: #e8722a;
}

.hero-panel-icon i {
    font-size: 24px;
    color: #fff;
}

.hero-panel-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 14px;
    transition: transform 0.4s;
}

.hero-panel:hover .hero-panel-title {
    transform: translateY(-4px);
}

.hero-panel-desc {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    margin-bottom: 0;
    color: rgba(255,255,255,0.85);
}

.hero-panel:hover .hero-panel-desc {
    opacity: 1;
    max-height: 100px;
    margin-bottom: 20px;
}

.hero-panel-btn {
    display: inline-block;
    padding: 12px 28px;
    border: 1.5px solid #fff;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease 0.1s;
}

.hero-panel:hover .hero-panel-btn {
    opacity: 1;
    transform: translateY(0);
}

.hero-panel-btn:hover {
    background: #fff;
    color: #111;
    opacity: 1;
}

/* ===== HERO INNER (subpages) ===== */
.hero-inner {
    position: relative;
    height: 460px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
    margin-top: 75px;
}
/* Uniform image banner for every inner page */
.hero-inner .hero-bg {
    position: absolute;
    inset: 0;
    background: #1a2b3b url('../img/ai-banner.jpg') center 30% / cover no-repeat;
    z-index: 0;
}
/* Placeholder banner image overlay */
.hero-inner .hero-banner-placeholder {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(232,114,42,0.15) 0%, rgba(15,52,96,0.3) 50%, rgba(22,33,62,0.5) 100%);
}
.hero-inner .hero-banner-placeholder .placeholder-icon {
    width: 64px;
    height: 64px;
    border: 2px dashed rgba(255,255,255,0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}
.hero-inner .hero-banner-placeholder .placeholder-icon i {
    font-size: 24px;
    color: rgba(255,255,255,0.3);
}
.hero-inner .hero-banner-placeholder .placeholder-text {
    font-size: 12px;
    color: rgba(255,255,255,0.25);
    letter-spacing: 1px;
    font-weight: 500;
}
.hero-inner .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26,43,59,0.62) 0%, rgba(26,43,59,0.48) 45%, rgba(26,43,59,0.72) 100%);
    z-index: 2;
}
.hero-inner .hero-content {
    position: relative;
    z-index: 3;
    padding: 0 40px;
    max-width: 900px;
}
.hero-inner .hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-inner .hero-content .hero-subtitle {
    font-size: 16px;
    font-weight: 300;
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
    padding: 18px 60px;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}
.breadcrumb-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #888;
}
.breadcrumb a {
    color: #666;
    font-weight: 500;
    transition: color 0.3s;
}
.breadcrumb a:hover { color: #e8722a; opacity: 1; }
.breadcrumb .sep { color: #ccc; font-size: 11px; }
.breadcrumb .current { color: #e8722a; font-weight: 600; }

/* ===== SECTIONS COMMON ===== */
.section-padding { padding: 120px 60px; }
.section-center { text-align: center; }
.container { max-width: 1200px; margin: 0 auto; }

/* ===== TWO CARDS ===== */
.two-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 600px;
}
.card-item {
    position: relative;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 550px;
    overflow: hidden;
    color: #222;
}
.card-item::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
}
.card-item:nth-child(1)::before {
    background: linear-gradient(135deg, #b8d4e3 0%, #d4eaf5 30%, #e8f4f8 60%, #fff 100%);
}
.card-item:nth-child(2)::before {
    background: linear-gradient(135deg, #e8f0f5 0%, #d0e4ef 40%, #a8cce0 100%);
}
.card-item > * { position: relative; z-index: 1; }
.card-label {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.7;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}
.card-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
}
.card-desc {
    font-size: 15px;
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 30px;
    max-width: 440px;
}

/* ===== BUTTONS ===== */
.btn-outline {
    display: inline-block;
    padding: 14px 32px;
    border: 1.5px solid currentColor;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    background: transparent;
    cursor: pointer;
}
.btn-outline:hover {
    background: #1a2b3b;
    color: #fff;
    border-color: #1a2b3b;
    opacity: 1;
}
.btn-outline.white { color: #fff; border-color: #fff; }
.btn-outline.white:hover { background: #fff; color: #111; }

.btn-more {
    display: inline-block;
    padding: 14px 36px;
    border: 1.5px solid #1a2b3b;
    font-size: 14px;
    font-weight: 500;
    color: #1a2b3b;
    transition: all 0.3s;
}
.btn-more:hover {
    background: #1a2b3b;
    color: #fff;
    opacity: 1;
}

/* ===== FUEL CELL SECTION ===== */
.fuel-cell { padding: 100px 60px; background: #fff; }
.fuel-cell-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.fuel-cell-image { display: flex; align-items: center; justify-content: center; }
.placeholder-img {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4/3;
    background: linear-gradient(145deg, #e4e8ec, #c8d0d8, #9aa8b4);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667;
    font-size: 14px;
    font-weight: 500;
}
.fuel-cell-label { font-size: 13px; color: #e8722a; font-weight: 500; letter-spacing: 0.5px; margin-bottom: 8px; }
.fuel-cell-subtitle { font-size: 14px; color: #666; margin-bottom: 16px; }
.fuel-cell-title { font-size: 38px; font-weight: 800; line-height: 1.2; margin-bottom: 28px; }
.fuel-cell-desc { font-size: 15px; color: #555; line-height: 1.8; margin-bottom: 36px; }

/* ===== HYDROGEN FOR HUMANITY ===== */
.humanity-banner { padding: 80px 60px; text-align: center; }
.humanity-banner h2 {
    font-size: 110px;
    font-weight: 200;
    color: #e0e0e0;
    letter-spacing: -2px;
    line-height: 1.1;
}

/* ===== BRAND STORY ===== */
.brand-story { padding: 100px 60px; background: #f8f9fa; }
.brand-story-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.brand-story-label { font-size: 13px; color: #e8722a; font-weight: 500; margin-bottom: 8px; }
.brand-story-tag { font-size: 14px; color: #888; margin-bottom: 16px; }
.brand-story-title { font-size: 34px; font-weight: 800; line-height: 1.3; margin-bottom: 24px; }
.brand-story-desc { font-size: 15px; color: #555; line-height: 1.8; margin-bottom: 36px; }
.brand-story-visual {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #0a4d6e, #0e7b8a, #1ab0b8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    font-weight: 300;
}

/* ===== HYDROGEN WAVE / VR ===== */
.hydrogen-wave { padding: 100px 60px; background: #fff; text-align: center; }
.hydrogen-wave-inner { max-width: 900px; margin: 0 auto; }
.hydrogen-wave-label { font-size: 13px; color: #e8722a; font-weight: 500; margin-bottom: 8px; }
.hydrogen-wave-title { font-size: 34px; font-weight: 800; margin-bottom: 20px; }
.hydrogen-wave-desc { font-size: 15px; color: #555; line-height: 1.8; margin-bottom: 40px; }
.wave-visual {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #063b50, #0a6e7e, #15a5b0);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 16px;
}

/* ===== HTWO BUSINESS ===== */
.business {
    position: relative;
    min-height: 550px;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}
.business-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(40,80,40,0.85), rgba(60,120,60,0.6)),
                linear-gradient(135deg, #2d5a27, #4a8c3f, #6bb85a, #8ed47a);
    z-index: 0;
}
.business-content {
    position: relative;
    z-index: 1;
    padding: 80px 60px;
    max-width: 700px;
}
.business-label { font-size: 13px; font-weight: 500; opacity: 0.7; margin-bottom: 8px; }
.business-title { font-size: 38px; font-weight: 800; line-height: 1.2; margin-bottom: 20px; }
.business-desc { font-size: 15px; line-height: 1.8; opacity: 0.85; margin-bottom: 36px; }

/* ===== PRESS RELEASES ===== */
.press { padding: 100px 60px; background: #fff; text-align: center; }
.press-label { font-size: 13px; color: #e8722a; font-weight: 500; margin-bottom: 12px; }
.press-title { font-size: 36px; font-weight: 800; margin-bottom: 50px; }
.press-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 50px;
}
.press-card { text-align: left; border-radius: 4px; overflow: hidden; transition: transform 0.3s; }
.press-card:hover { transform: translateY(-4px); }
.press-card-img {
    width: 100%;
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #dde3e8, #c2cdd6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #889;
    font-size: 13px;
}
.press-card-body { padding: 20px 0; }
.press-card-date { font-size: 12px; color: #999; margin-bottom: 8px; }
.press-card-title { font-size: 16px; font-weight: 600; line-height: 1.5; }

/* ===== CONTACT & NEWSLETTER ===== */
.contact-newsletter { padding: 100px 60px; background: #f4f6f8; text-align: center; }
.contact-block { margin-bottom: 80px; }
.contact-label { font-size: 13px; color: #e8722a; font-weight: 500; margin-bottom: 12px; }
.contact-title { font-size: 32px; font-weight: 800; margin-bottom: 16px; }
.contact-desc { font-size: 15px; color: #666; margin-bottom: 32px; }

.newsletter-label { font-size: 13px; color: #e8722a; font-weight: 500; margin-bottom: 12px; font-style: italic; }
.newsletter-title { font-size: 36px; font-weight: 800; margin-bottom: 40px; }
.newsletter-form { max-width: 600px; margin: 0 auto; }
.newsletter-form label { display: block; text-align: left; font-size: 14px; font-weight: 600; margin-bottom: 10px; }
.newsletter-form label span { color: #e8722a; }
.form-row { display: flex; gap: 0; }
.form-row input[type="email"] {
    flex: 1;
    padding: 16px 20px;
    border: 1px solid #ccc;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s;
}
.form-row input[type="email"]:focus { border-color: #e8722a; }
.form-row button {
    padding: 16px 40px;
    background: #fff;
    border: 1px solid #111;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s;
}
.form-row button:hover { background: #111; color: #fff; }
.form-checkbox { display: flex; align-items: center; gap: 10px; margin-top: 16px; font-size: 13px; color: #666; }
.form-checkbox input[type="checkbox"] { width: 18px; height: 18px; accent-color: #e8722a; }

/* ===== PAGE CONTENT (subpages) ===== */
.page-content {
    padding: 80px 60px;
    min-height: 60vh;
}
.page-content .container { max-width: 1100px; }
.page-content h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 24px;
    color: #111;
}
.page-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    margin-top: 40px;
    color: #222;
}
.page-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 20px;
}
.page-content .highlight-box {
    background: #f0f8fb;
    border-left: 4px solid #e8722a;
    padding: 30px 36px;
    margin: 40px 0;
    border-radius: 0 8px 8px 0;
}
.page-content .highlight-box p { color: #333; margin-bottom: 0; }

/* ===== MODERN INNER PAGE COMPONENTS ===== */

/* Section label tag */
.mk-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #e8722a;
    margin-bottom: 16px;
    padding: 6px 14px;
    background: rgba(232,114,42,0.08);
    border-radius: 4px;
}

/* Modern section base */
.mk-section {
    padding: 80px 60px;
}
.mk-section .container { max-width: 1100px; }
.mk-section.bg-light { background: #f8f9fb; }
.mk-section.bg-dark { background: #111; color: #fff; }
.mk-section.bg-dark h2, .mk-section.bg-dark h3 { color: #fff; }
.mk-section.bg-dark p { color: rgba(255,255,255,0.7); }
.mk-section.bg-gradient { background: linear-gradient(135deg, #0f1923 0%, #1a2d42 50%, #0f3460 100%); color: #fff; }
.mk-section.bg-gradient h2, .mk-section.bg-gradient h3 { color: #fff; }
.mk-section.bg-gradient p { color: rgba(255,255,255,0.75); }

/* Section titles */
.mk-section-title {
    font-size: 36px;
    font-weight: 800;
    color: #111;
    margin-bottom: 16px;
    line-height: 1.2;
}
.mk-section-subtitle {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
    max-width: 700px;
    margin-bottom: 48px;
}
.mk-section-subtitle.center { margin-left: auto; margin-right: auto; text-align: center; }
.mk-section-title.center { text-align: center; }

/* Modern split layout (image + text) */
.mk-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.mk-split.reverse { direction: rtl; }
.mk-split.reverse > * { direction: ltr; }
.mk-split-content h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #111;
    line-height: 1.25;
}
.mk-split-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
}
.mk-split-content .mk-list {
    margin: 20px 0;
}
.mk-split-content .mk-list li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 15px;
    color: #444;
    line-height: 1.6;
}
.mk-split-content .mk-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 16px;
    height: 2px;
    background: #e8722a;
}

/* Modern image placeholder */
.mk-img {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #1a2332, #243447, #2c4158);
}
.mk-img.ratio-16-9 { aspect-ratio: 16/9; }
.mk-img.ratio-1-1 { aspect-ratio: 1/1; }
.mk-img-inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.mk-img-inner i {
    font-size: 36px;
    color: rgba(255,255,255,0.2);
}
.mk-img-inner span {
    font-size: 11px;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.15);
    font-weight: 600;
}
.mk-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(232,114,42,0.1) 0%, transparent 60%);
    pointer-events: none;
}

/* Modern stats */
.mk-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.mk-stat {
    padding: 48px 24px;
    text-align: center;
    position: relative;
}
.mk-stat::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: rgba(255,255,255,0.15);
}
.mk-stat:last-child::after { display: none; }
.mk-stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}
.mk-stat-number span { color: #e8722a; }
.mk-stat-text {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    font-weight: 400;
}
.mk-stats.light .mk-stat::after { background: #e0e0e0; }
.mk-stats.light .mk-stat-number { color: #e8722a; }
.mk-stats.light .mk-stat-text { color: #666; }

/* Modern feature cards */
.mk-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.mk-card {
    padding: 36px 28px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #eee;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}
.mk-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e8722a, #f0913e);
    transform: scaleX(0);
    transition: transform 0.35s ease;
    transform-origin: left;
}
.mk-card:hover {
    border-color: transparent;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    transform: translateY(-6px);
}
.mk-card:hover::before { transform: scaleX(1); }
.mk-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(232,114,42,0.1), rgba(232,114,42,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #e8722a;
    font-size: 22px;
    transition: all 0.35s;
}
.mk-card:hover .mk-card-icon {
    background: linear-gradient(135deg, #e8722a, #f0913e);
    color: #fff;
}
.mk-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
    margin-top: 0;
}
.mk-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Service link cards (for hub pages) */
.mk-service-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.mk-service-card {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #eee;
    transition: all 0.35s ease;
    text-decoration: none;
    color: inherit;
    position: relative;
}
.mk-service-card:hover {
    border-color: transparent;
    box-shadow: 0 16px 48px rgba(0,0,0,0.1);
    transform: translateY(-6px);
}
.mk-service-card .card-visual {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #1a2332, #243447);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.mk-service-card .card-visual i {
    font-size: 36px;
    color: rgba(255,255,255,0.25);
    transition: all 0.35s;
    z-index: 1;
}
.mk-service-card:hover .card-visual i { color: rgba(255,255,255,0.5); transform: scale(1.1); }
.mk-service-card .card-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(232,114,42,0.15) 0%, transparent 70%);
    transition: opacity 0.35s;
    opacity: 0;
}
.mk-service-card:hover .card-visual::after { opacity: 1; }
.mk-service-card .card-body {
    padding: 24px;
}
.mk-service-card .card-body h3 {
    font-size: 17px;
    font-weight: 700;
    color: #111;
    margin: 0 0 8px;
    transition: color 0.3s;
}
.mk-service-card:hover .card-body h3 { color: #e8722a; }
.mk-service-card .card-body p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}
.mk-service-card .card-arrow {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.4);
    font-size: 14px;
    transition: all 0.35s;
}
.mk-service-card:hover .card-arrow { background: #e8722a; color: #fff; }

/* Modern timeline */
.mk-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.mk-timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #e8722a 0%, #e0e0e0 100%);
}
.mk-timeline-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 24px;
    padding-bottom: 40px;
    position: relative;
}
.mk-timeline-item:last-child { padding-bottom: 0; }
.mk-timeline-dot {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    color: #e8722a;
    z-index: 1;
    transition: all 0.3s;
}
.mk-timeline-item:hover .mk-timeline-dot {
    background: #e8722a;
    color: #fff;
    border-color: #e8722a;
}
.mk-timeline-content {
    padding: 24px 28px;
    background: #f8f9fb;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: all 0.3s;
}
.mk-timeline-item:hover .mk-timeline-content {
    background: #fff;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    border-color: transparent;
}
.mk-timeline-content h4 {
    font-size: 17px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}
.mk-timeline-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Modern callout/highlight */
.mk-callout {
    padding: 40px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}
.mk-callout.dark {
    background: linear-gradient(135deg, #0f1923, #1a2d42);
    color: #fff;
}
.mk-callout.dark h3 { color: #fff; margin-top: 0; }
.mk-callout.dark p { color: rgba(255,255,255,0.75); }
.mk-callout.light {
    background: #f8f9fb;
    border: 1px solid #eee;
}
.mk-callout.light h3 { color: #111; margin-top: 0; }
.mk-callout.accent {
    background: linear-gradient(135deg, #e8722a, #c95f1e);
    color: #fff;
}
.mk-callout.accent h3 { color: #fff; margin-top: 0; }
.mk-callout.accent p { color: rgba(255,255,255,0.85); }
.mk-callout::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
}

/* News/blog cards modern */
.mk-article-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.mk-article-card {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #eee;
    transition: all 0.35s;
}
.mk-article-card:hover {
    border-color: transparent;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    transform: translateY(-4px);
}
.mk-article-card .card-img {
    aspect-ratio: 16/10;
    background: linear-gradient(135deg, #1a2332, #2c4158);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.mk-article-card .card-img i {
    font-size: 28px;
    color: rgba(255,255,255,0.15);
}
.mk-article-card .card-content {
    padding: 24px;
}
.mk-article-card .card-date {
    font-size: 12px;
    color: #e8722a;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.mk-article-card .card-content h4 {
    font-size: 17px;
    font-weight: 700;
    color: #111;
    margin: 8px 0 12px;
    line-height: 1.4;
}
.mk-article-card .card-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}
.mk-article-card .card-link {
    font-size: 13px;
    font-weight: 600;
    color: #e8722a;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s;
}
.mk-article-card:hover .card-link { gap: 10px; }

/* Job listing cards */
.mk-job-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
.mk-job-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 32px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    transition: all 0.3s;
}
.mk-job-card:hover {
    border-color: transparent;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transform: translateX(4px);
}
.mk-job-card-info h4 {
    font-size: 17px;
    font-weight: 700;
    color: #111;
    margin-bottom: 6px;
}
.mk-job-card-info .mk-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.mk-tag {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 4px;
    background: #f0f2f5;
    color: #555;
    font-weight: 500;
}
.mk-tag.accent { background: rgba(232,114,42,0.08); color: #e8722a; }
.mk-job-card-btn {
    padding: 10px 24px;
    border: 1.5px solid #e8722a;
    color: #e8722a;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
}
.mk-job-card-btn:hover {
    background: #e8722a;
    color: #fff;
    opacity: 1;
}

/* FAQ accordion */
.mk-faq-list { max-width: 800px; margin: 0 auto; }
.mk-faq-item {
    border: 1px solid #eee;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s;
}
.mk-faq-item.active { border-color: #e8722a; }
.mk-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #111;
    transition: all 0.3s;
    gap: 16px;
}
.mk-faq-q:hover { color: #e8722a; }
.mk-faq-q i { transition: transform 0.3s; color: #e8722a; flex-shrink: 0; }
.mk-faq-item.active .mk-faq-q i { transform: rotate(180deg); }
.mk-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.mk-faq-a-inner {
    padding: 0 24px 20px;
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

/* Legal page content */
.mk-legal {
    max-width: 820px;
    margin: 0 auto;
}
.mk-legal h2 { font-size: 21px; font-weight: 700; color: #1a2b3b; margin-top: 40px; margin-bottom: 12px; }
.mk-legal h2:first-of-type { margin-top: 0; }
.mk-legal h3 { font-size: 16px; font-weight: 700; color: #1a2b3b; margin: 22px 0 8px; }
.mk-legal p { font-size: 15px; line-height: 1.9; color: #555; margin-bottom: 16px; }
.mk-legal ul { margin: 10px 0 20px; padding-left: 22px; }
.mk-legal ul li { list-style: disc; margin-bottom: 7px; font-size: 15px; line-height: 1.8; color: #555; }
.mk-legal a { color: #e8722a; text-decoration: underline; }
.mk-legal a:hover { opacity: 0.8; }
.mk-legal .legal-lead { font-size: 16px; color: #444; }
.mk-legal .legal-meta {
    background: #f8f9fb; border: 1px solid #eee; border-radius: 10px;
    padding: 18px 22px; margin-bottom: 8px; font-size: 14px; line-height: 1.8;
}
.mk-legal .legal-updated {
    color: #999; font-size: 13px; margin-top: 44px; border-top: 1px solid #eee; padding-top: 16px;
}

/* ===== MODERN RESPONSIVE ADDITIONS ===== */

/* Highlight box as standalone section */
section.highlight-box {
    padding: 60px 60px;
    background: #f0f8fb;
    border-left: none;
    border-radius: 0;
    margin: 0;
}
section.highlight-box .container { max-width: 1100px; }
section.highlight-box .highlight-content {
    border-left: 4px solid #e8722a;
    padding: 30px 36px;
    border-radius: 0 8px 8px 0;
    background: #fff;
}
section.highlight-box h2 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 16px;
    color: #111;
}
section.highlight-box p {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
}
section.highlight-box p:last-child { margin-bottom: 0; }

/* Intro section with large lead text */
.page-intro {
    padding: 70px 60px 0;
    background: #fff;
}
.page-intro .container { max-width: 1100px; }
.page-intro .lead-text {
    font-size: 20px;
    color: #333;
    line-height: 1.8;
    font-weight: 400;
    max-width: 850px;
}
.page-intro .section-label {
    font-size: 13px;
    color: #e8722a;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: block;
}

/* Feature grid for service highlights */
.feature-grid {
    padding: 60px 60px;
}
.feature-grid .container { max-width: 1100px; }
.feature-grid .section-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 40px;
    color: #111;
}
.feature-grid .grid-wrapper,
.feature-grid .grid-3-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.feature-card {
    padding: 36px 28px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s;
    border: 1px solid transparent;
}
.feature-card:hover {
    background: #fff;
    border-color: #e0e0e0;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transform: translateY(-4px);
}
.feature-card .feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background: linear-gradient(135deg, #e8722a, #f0913e);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #fff;
    font-size: 22px;
}
.feature-card h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
}
.feature-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Two-column content layout */
.content-two-col {
    padding: 60px 60px 0;
}
.content-two-col .container { max-width: 1100px; }
.content-two-col .two-col-wrapper,
.content-two-col.grid-direct {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.content-two-col.reverse { direction: rtl; }
.content-two-col.reverse > * { direction: ltr; }

/* Image placeholder for content sections */
.content-img-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(145deg, #e4e8ec, #c8d0d8, #9aa8b4);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}
.content-img-placeholder i {
    font-size: 32px;
    color: rgba(255,255,255,0.5);
}
.content-img-placeholder span {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.5px;
}

/* Stats / numbers row */
.stats-row {
    padding: 0 60px;
}
.stats-row .container { max-width: 1100px; }
.stats-row .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.stat-item {
    padding: 40px 20px;
    text-align: center;
    border-right: 1px solid #eee;
}
.stat-item:last-child { border-right: none; }
.stat-number {
    font-size: 42px;
    font-weight: 800;
    color: #e8722a;
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label {
    font-size: 13px;
    color: #888;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Certificates grid */
section.cert-grid-section { padding: 60px 60px; }
section.cert-grid-section .container { max-width: 1100px; }
section.cert-grid-section .section-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 40px;
    color: #111;
}
.cert-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.cert-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s;
}
.cert-card:hover {
    border-color: #e8722a;
    box-shadow: 0 8px 30px rgba(232,114,42,0.1);
    transform: translateY(-4px);
}
.cert-card .cert-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #f0f8fb;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #e8722a;
    font-size: 24px;
}
.cert-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}
.cert-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* CTA band */
.cta-band {
    background: linear-gradient(135deg, #e8722a 0%, #c95f1e 50%, #a84e18 100%);
    padding: 60px;
    color: #fff;
    text-align: center;
}
.cta-band .container { max-width: 800px; }
.cta-band h2,
.cta-band h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}
.cta-band p {
    font-size: 15px;
    opacity: 0.85;
    margin-bottom: 28px;
    color: #fff;
}
.cta-band .cta-button,
.cta-band .btn-outline.white {
    display: inline-block;
    padding: 14px 36px;
    border: 1.5px solid #fff;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s;
}
.cta-band .cta-button:hover,
.cta-band .btn-outline.white:hover {
    background: #fff;
    color: #e8722a;
    opacity: 1;
}

/* Contact form enhanced */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.contact-info-card {
    padding: 28px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 20px;
    transition: all 0.3s;
}
.contact-info-card:hover {
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.contact-info-card .info-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #e8722a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
}
.contact-info-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    margin-bottom: 4px;
}
.contact-info-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Form styling */
.form-group {
    margin-bottom: 24px;
}
.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}
.form-group label .required { color: #e8722a; }
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: #fff;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #e8722a;
    box-shadow: 0 0 0 3px rgba(232,114,42,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.btn-submit {
    display: inline-block;
    padding: 16px 48px;
    background: #e8722a;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 0.3px;
}
.btn-submit:hover {
    background: #c95f1e;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(232,114,42,0.3);
}

/* Map placeholder */
.map-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(145deg, #e4e8ec, #c8d0d8);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 60px;
}
.map-placeholder i { font-size: 36px; color: #999; }
.map-placeholder span { font-size: 13px; color: #999; }

/* Timeline style for policies */
.timeline {
    position: relative;
    padding-left: 40px;
    margin: 40px 0;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e0e0e0;
}
.timeline-item {
    position: relative;
    padding-bottom: 36px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
    content: '';
    position: absolute;
    left: -32px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e8722a;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #e8722a;
}
.timeline-item h4 {
    font-size: 17px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}
.timeline-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ===== FOOTER ===== */
.footer {
    position: relative;
    padding: 80px 60px 60px;
    color: #fff;
    overflow: hidden;
    background: #1a2b3b;
}
.footer-bg {
    position: absolute;
    inset: 0;
    background: #000000;
    z-index: 0;
}
.footer > * { position: relative; z-index: 1; }
.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}
.footer-nav-links { display: flex; flex-direction: column; gap: 18px; }
.footer-nav-link { font-size: 16px; font-weight: 700; color: #fff; }
.footer-policy-links { display: flex; flex-direction: column; gap: 14px; }
.footer-policy-link { font-size: 14px; color: rgba(255,255,255,0.7); font-weight: 400; }
.footer-policy-link:first-child { font-weight: 700; color: #fff; }
.footer-right { display: flex; flex-direction: column; gap: 16px; }
.footer-btn {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid rgba(255,255,255,0.5);
    font-size: 13px;
    color: #fff;
    text-align: center;
    transition: all 0.3s;
}
.footer-btn:hover { background: rgba(255,255,255,0.1); opacity: 1; }
.footer-social { display: flex; gap: 16px; margin-top: 12px; }
.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}
.footer-bottom {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 60px auto 0;
    display: flex;
    align-items: center;
    gap: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.footer-copyright { font-size: 12px; color: rgba(255,255,255,0.5); letter-spacing: 0.5px; }

/* Footer v2 — clean symmetric layout */
.footer-inner-v2 {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-col-center {
    text-align: center;
    align-items: center;
}
.footer-col-right {
    text-align: right;
    align-items: flex-end;
}
.footer-contact-item {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin: 0;
}
.footer-contact-item i {
    margin-right: 8px;
    color: #e8722a;
    width: 16px;
}
.footer-bottom-v2 {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1.5px solid #333;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    z-index: 999;
    transition: all 0.3s;
    opacity: 0;
    pointer-events: none;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: #1a2b3b; color: #fff; border-color: #1a2b3b; }

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== SCROLL PROGRESS BAR ===== */
#scrollProgress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, #e8722a, #f0913e, #e8722a);
    z-index: 10000;
    transition: width 0.15s ease-out;
    box-shadow: 0 0 8px rgba(232,114,42,0.5);
}

/* ===== DOT NAVIGATION (Right Side) ===== */
.dot-nav {
    position: fixed;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9000;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-end;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.dot-nav.dot-nav-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
/* Hide the section dot-nav (and scroll-to-top) while the mobile menu is open */
body.nav-open .dot-nav,
body.nav-open .scroll-top {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}
.dot-nav-item {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.7);
    background: rgba(0,0,0,0.15);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0;
    box-shadow: 0 0 4px rgba(0,0,0,0.3);
}
.dot-nav-item:hover {
    border-color: #e8722a;
    background: rgba(232,114,42,0.2);
    transform: scale(1.3);
}
.dot-nav-item.active {
    border-color: #e8722a;
    background: #e8722a;
    box-shadow: 0 0 12px rgba(232,114,42,0.4);
    transform: scale(1.2);
}
.dot-nav-tooltip {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%) translateX(8px);
    background: #1a2b3b;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    letter-spacing: 0.3px;
}
.dot-nav-tooltip::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: #1a2b3b;
}
.dot-nav-item:hover .dot-nav-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* ===== SCROLL REVEAL ANIMATIONS ===== */
.scroll-anim {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
.scroll-anim[data-anim="reveal-up"] {
    transform: translateY(50px);
}
.scroll-anim[data-anim="reveal-left"] {
    transform: translateX(-60px);
}
.scroll-anim[data-anim="reveal-right"] {
    transform: translateX(60px);
}
.scroll-anim[data-anim="reveal-scale"] {
    transform: scale(0.85);
}
.scroll-anim-visible {
    opacity: 1 !important;
    transform: none !important;
}
/* Keep transition-delay from inline style */
.scroll-anim-visible {
    transition-delay: inherit;
}

/* ===== TEXT SPLIT REVEAL ===== */
.word-reveal {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px) rotateX(-15deg);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.text-reveal-visible .word-reveal {
    opacity: 1;
    transform: none;
}

/* ===== 3D TILT CARDS ===== */
.tilt-card {
    transform-style: preserve-3d;
    will-change: transform;
    backface-visibility: hidden;
    transition: transform 0.4s ease-out;
}
.tilt-card:hover {
    transition: none;
}
.tilt-shine {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    backface-visibility: hidden;
    z-index: 1;
}

/* ===== STATS BAR ===== */
.home-stats {
    padding: 80px 60px;
    background: #1a2b3b;
    width: 100%;
    position: relative;
    overflow: hidden;
}
.home-stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(232,114,42,0.08) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 50%, rgba(232,114,42,0.06) 0%, transparent 60%);
    pointer-events: none;
}
.home-stats-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}
.stat-item {
    flex: 1;
    text-align: center;
    padding: 20px;
}
.stat-number {
    display: block;
    font-size: 56px;
    font-weight: 800;
    color: #e8722a;
    line-height: 1.1;
    margin-bottom: 8px;
    letter-spacing: -1px;
}
.stat-label {
    display: block;
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
}


/* ===== FOCUS STATES (Accessibility) ===== */
*:focus-visible {
    outline: 2px solid #e8722a;
    outline-offset: 3px;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid #e8722a;
    outline-offset: 2px;
}
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: #e8722a;
    color: #fff;
    padding: 12px 24px;
    border-radius: 0 0 8px 8px;
    z-index: 100000;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: top 0.2s;
}
.skip-link:focus {
    top: 0;
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: #1a2b3b;
    color: #fff;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -4px 30px rgba(0,0,0,0.2);
}
.cookie-banner.visible {
    transform: translateY(0);
}
.cookie-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 40px;
    display: flex;
    align-items: center;
    gap: 32px;
}
.cookie-banner-text {
    flex: 1;
}
.cookie-banner-text p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    margin: 0;
}
.cookie-banner-text a {
    color: #e8722a;
    text-decoration: underline;
}
.cookie-banner-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}
.cookie-btn {
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    white-space: nowrap;
}
.cookie-btn-accept {
    background: #e8722a;
    color: #fff;
}
.cookie-btn-accept:hover {
    background: #f0913e;
}
.cookie-btn-reject {
    background: transparent;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.2);
}
.cookie-btn-reject:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

/* ===== PAGE LOAD TRANSITION ===== */
body {
    opacity: 0;
    animation: pageIn 0.5s ease forwards;
}
@keyframes pageIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===== FOOTER COPYRIGHT ===== */
.footer-copyright {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    margin-top: 12px;
    letter-spacing: 0.3px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .header { padding: 0 30px; }
    .nav-link { padding: 0 12px; font-size: 13px; }
    .mega-col { padding: 28px 24px; }
    .hero-video-title { font-size: 42px; }
    .hero-video-content { padding: 60px 30px; }
    .hero-panel-title { font-size: 24px; }
    .hero-panel-content { padding: 30px 24px; }
    .humanity-banner h2 { font-size: 70px; }
    .two-cards { grid-template-columns: 1fr; }
    .fuel-cell-inner { grid-template-columns: 1fr; }
    .brand-story-inner { grid-template-columns: 1fr; }
    .press-grid { grid-template-columns: 1fr 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .feature-grid .grid-wrapper,
    .feature-grid .grid-3-col { grid-template-columns: 1fr 1fr; }
    .cert-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .mk-section { padding: 60px 30px; }
    .mk-split { grid-template-columns: 1fr 1fr; gap: 40px; }
    .mk-cards { grid-template-columns: 1fr 1fr; }
    .mk-service-cards { grid-template-columns: 1fr 1fr; }
    .mk-article-cards { grid-template-columns: 1fr 1fr; }
    .mk-stats { grid-template-columns: repeat(4, 1fr); }
    /* Home sections tablet */
    .home-headline { padding: 80px 30px; }
    .home-headline-text h2 { font-size: 34px; }
    .home-mv { padding: 80px 30px; }
    .home-mv-header h2 { font-size: 30px; }
    .home-pillars { padding: 80px 30px; }
    .home-pillars-grid { grid-template-columns: 1fr 1fr; }
    .home-pillars-grid-v2 { grid-template-columns: 1fr 1fr; }
    .pillar-img-card { min-height: 280px; }
    .home-amsterdam { padding: 80px 30px; }
    .home-companies { padding: 80px 30px; }
    .companies-logo-grid-v2 { grid-template-columns: repeat(6, 1fr); gap: 18px; max-width: 700px; }
    .home-cta { padding: 80px 30px; }
    .gallery-item { width: 240px; height: 170px; }
    /* Stats tablet */
    .stat-number { font-size: 42px; }
    .stat-label { font-size: 12px; }
    .home-stats { padding: 60px 30px; }
    .dot-nav { right: 16px; gap: 10px; }
    .dot-nav-item { width: 10px; height: 10px; }
}

@media (max-width: 768px) {
    /* Cookie banner mobile */
    .cookie-banner-inner { flex-direction: column; padding: 20px; gap: 16px; text-align: center; }
    .cookie-banner-actions { width: 100%; justify-content: center; }
    .cookie-btn { padding: 10px 20px; font-size: 13px; }
    /* Scroll down arrow mobile */
    .hero-scroll-down { width: 40px; height: 40px; font-size: 15px; bottom: 24px; }
    /* Dot nav mobile */
    .dot-nav { right: 10px; gap: 8px; }
    .dot-nav-item { width: 8px; height: 8px; }
    .dot-nav-tooltip { display: none; }
    /* Stats mobile */
    .home-stats { padding: 50px 20px; }
    .home-stats-inner { flex-wrap: wrap; gap: 0; }
    .stat-item { flex: 0 0 50%; padding: 16px 10px; }
    .stat-number { font-size: 36px; }
    .stat-label { font-size: 11px; }
    .stat-divider { display: none; }
    /* Disable 3D tilt on touch */
    .tilt-card { transform: none !important; }
    /* Scroll animations — smaller movements */
    .scroll-anim[data-anim="reveal-up"] { transform: translateY(30px); }
    .scroll-anim[data-anim="reveal-left"] { transform: translateX(-30px); }
    .scroll-anim[data-anim="reveal-right"] { transform: translateX(30px); }
    /* Lightbox mobile */
    .lightbox-nav { width: 40px; height: 40px; font-size: 15px; }
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
    .lightbox-close { top: 14px; right: 14px; width: 38px; height: 38px; font-size: 17px; }
    .lightbox-content img { max-width: 95vw; max-height: 75vh; }

    .header { padding: 0 20px; }
    .logo-img { height: 34px; }
    .logo-fallback svg { height: 34px; }
    .lang-switch { margin-left: auto; margin-right: 8px; }
    .hamburger { display: flex; color: #fff; }
    .hamburger.active { color: #111; z-index: 1002; }
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    .nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 100px 30px 30px;
        gap: 0;
        height: auto;
        overflow-y: auto;
        z-index: 1001;
    }
    .nav.open { display: flex; }
    .nav-item { height: auto; width: 100%; flex-direction: column; }
    .nav-link {
        color: #111 !important;
        padding: 16px 0;
        font-size: 18px;
        width: 100%;
        border-bottom: 1px solid #eee;
    }
    .nav-link::after { display: none; }
    .dropdown {
        position: static;
        box-shadow: none;
        border-top: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0 0 0 20px;
        display: none;
    }
    .nav-item.mobile-open .dropdown { display: block; }
    .dropdown-link { padding: 12px 0; }
    .dropdown-link:hover { padding-left: 14px; }

    /* Mega menu mobile */
    .mega-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        border-top: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        grid-template-columns: 1fr;
        padding: 0 0 0 10px;
        display: none;
        gap: 0;
    }
    .nav-item.has-mega.mobile-open .mega-menu { display: block; }
    .mega-col {
        padding: 12px 0 12px 10px;
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
    }
    .mega-col:last-child { border-bottom: none; }
    .mega-col-title { font-size: 13px; margin-bottom: 10px; padding-bottom: 8px; }
    .mega-link { padding: 8px 0; font-size: 14px; }

    .gallery-arrow { width: 36px; height: 36px; font-size: 13px; }
    .gallery-arrow-left { left: 8px; }
    .gallery-arrow-right { right: 8px; }
    .hero-video { height: 100vh; min-height: 500px; }
    .hero-video-title { font-size: 26px; }
    .hero-video-desc { font-size: 14px; }
    .hero-video-content { padding: 40px 20px; }
    .hero-video-btns { flex-direction: column; gap: 12px; }
    .hero-btn-primary, .hero-btn-secondary { text-align: center; padding: 14px 28px; font-size: 13px; }
    /* Home headline mobile */
    .home-headline { padding: 60px 20px; }
    .home-headline-text h2 { font-size: 26px; }
    .home-headline-text p { font-size: 15px; }
    /* Home sections mobile */
    .home-mv { padding: 60px 20px; }
    .home-mv-header h2 { font-size: 24px; }
    .home-mv-grid { grid-template-columns: 1fr; gap: 20px; }
    .home-mv-card { padding: 36px 28px; }
    .home-mv-card h3 { font-size: 20px; }
    .home-amsterdam { padding: 60px 20px; }
    .home-amsterdam-text h2 { font-size: 28px; }
    .gallery-item { width: 220px; height: 160px; }
    .home-pillars { padding: 60px 20px; }
    .home-pillars-header h2 { font-size: 26px; }
    .home-pillars-grid { grid-template-columns: 1fr; gap: 16px; }
    .home-pillars-grid-v2 { grid-template-columns: 1fr 1fr; }
    .pillar-img-card { min-height: 240px; }
    .pillar-img-overlay { padding: 24px 18px; }
    .pillar-img-overlay h3 { font-size: 16px; }
    .home-companies { padding: 60px 20px; }
    .home-companies-inner h2 { font-size: 26px; }
    .companies-logo-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
    .companies-logo-grid-v2 { grid-template-columns: repeat(6, 1fr); gap: 14px; max-width: 100%; }
    .company-logo-v2 i { font-size: 26px; }
    .company-logo-card { padding: 28px 16px; }
    .company-logo-card i { font-size: 26px; }
    .home-cta { padding: 60px 20px; }
    .home-cta h2 { font-size: 26px; }
    .hero-panels { flex-direction: column; height: auto; min-height: auto; }
    .hero-panel { min-height: 280px; }
    .hero-panel:hover { flex: 1; }
    .hero-panel-desc { opacity: 1; max-height: 100px; margin-bottom: 16px; }
    .hero-panel-btn { opacity: 1; transform: translateY(0); }
    .hero-panel-title { font-size: 26px; }
    .section-padding { padding: 80px 20px; }
    .card-title { font-size: 30px; }
    .fuel-cell { padding: 80px 20px; }
    .fuel-cell-title { font-size: 28px; }
    .humanity-banner h2 { font-size: 42px; }
    .brand-story { padding: 80px 20px; }
    .press { padding: 80px 20px; }
    .press-grid { grid-template-columns: 1fr; }
    .press-title { font-size: 28px; }
    .contact-newsletter { padding: 80px 20px; }
    .business-content { padding: 60px 20px; }
    .business-title { font-size: 28px; }
    .page-content { padding: 60px 20px; }
    .page-intro { padding: 50px 20px 0; }
    .hero-inner { height: 360px; }
    .hero-inner .hero-content h1 { font-size: 32px; }
    .hero-inner .hero-content .hero-subtitle { font-size: 14px; }
    .breadcrumb { padding: 14px 20px; }
    .feature-grid { padding: 40px 20px; }
    .feature-grid .grid-wrapper,
    .feature-grid .grid-3-col { grid-template-columns: 1fr; gap: 16px; }
    .content-two-col { padding: 40px 20px 0; }
    .content-two-col .two-col-wrapper { grid-template-columns: 1fr; gap: 30px; }
    .stats-row { padding: 0 20px; }
    .stats-row .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-item:nth-child(2) { border-right: none; }
    .cert-grid { grid-template-columns: 1fr; gap: 16px; }
    section.cert-grid-section { padding: 40px 20px; }
    .cta-band { padding: 40px 20px; }
    .cta-band h2, .cta-band h3 { font-size: 22px; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row-2 { grid-template-columns: 1fr; }
    .map-placeholder { height: 280px; }
    section.highlight-box { padding: 40px 20px; }
    .timeline { padding-left: 30px; }
    .mk-section { padding: 50px 20px; }
    .mk-section-title { font-size: 28px; }
    .mk-split { grid-template-columns: 1fr; gap: 30px; }
    .mk-split.reverse { direction: ltr; }
    .mk-cards { grid-template-columns: 1fr; gap: 16px; }
    .mk-service-cards { grid-template-columns: 1fr; gap: 16px; }
    .mk-article-cards { grid-template-columns: 1fr; gap: 16px; }
    .mk-stats { grid-template-columns: 1fr 1fr; }
    .mk-stat:nth-child(2)::after { display: none; }
    .mk-stat { padding: 32px 16px; }
    .mk-stat-number { font-size: 36px; }
    .mk-timeline::before { left: 20px; }
    .mk-timeline-item { grid-template-columns: 40px 1fr; gap: 16px; }
    .mk-timeline-dot { width: 40px; height: 40px; font-size: 12px; }
    .mk-callout { padding: 28px; }
    .mk-job-card { flex-direction: column; align-items: flex-start; gap: 16px; }
    .footer { padding: 60px 20px 40px; }
    .footer-inner { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    /* Footer v2 mobile — stack columns */
    .footer-inner-v2 { grid-template-columns: 1fr; gap: 28px; text-align: center; }
    .footer-col { align-items: center; }
    .footer-col-center { text-align: center; }
    .footer-col-right { text-align: center; align-items: center; }
    .footer-bottom-v2 { align-items: center; text-align: center; }
    /* Snap footer — don't force full viewport on mobile */
    .snap-footer { min-height: auto; padding: 0; }
}

/* ===== 480px — Small Phones (iPhone SE, iPhone 12 mini, older Android) ===== */
@media (max-width: 480px) {
    /* Typography scaling */
    .hero-video-title { font-size: 22px; }
    .hero-video-desc { font-size: 13px; }
    .home-headline-text h2 { font-size: 22px; }
    .home-headline-text p { font-size: 14px; }
    .home-mv-header h2 { font-size: 20px; }
    .home-mv-card h3 { font-size: 18px; }
    .home-mv-card p { font-size: 13px; }
    .home-amsterdam-text h2 { font-size: 22px; }
    .home-amsterdam-text p { font-size: 13px; }
    .home-pillars-header h2 { font-size: 22px; }
    .home-companies-inner h2 { font-size: 22px; }
    .home-cta h2 { font-size: 22px; }
    .home-cta p { font-size: 14px; }
    .humanity-banner h2 { font-size: 32px; }
    .mk-section-title { font-size: 22px; }

    /* Layout tightening */
    .home-headline { padding: 40px 16px; }
    .home-mv { padding: 40px 16px; }
    .home-amsterdam { padding: 40px 16px; }
    .home-pillars { padding: 40px 16px; }
    .home-companies { padding: 40px 16px; }
    .home-cta { padding: 40px 16px; }
    .home-stats { padding: 36px 16px; }
    .mk-section { padding: 40px 16px; }

    /* Gallery cards smaller */
    .gallery-item { width: 180px; height: 130px; }
    .gallery-arrow { width: 32px; height: 32px; font-size: 12px; }
    .gallery-arrow-left { left: 6px; }
    .gallery-arrow-right { right: 6px; }

    /* Company grid 2-col tight */
    .companies-logo-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .company-logo-card { padding: 20px 12px; }
    .company-logo-card i { font-size: 24px; }
    .company-logo-card span { font-size: 12px; }
    .companies-logo-grid-v2 { grid-template-columns: repeat(6, 1fr); gap: 8px; max-width: 100%; }
    .company-logo-v2 i { font-size: 22px; }

    /* Pillar cards */
    .pillar-card { padding: 28px 20px; }
    .pillar-card h3 { font-size: 15px; }
    .pillar-card p { font-size: 13px; }
    .pillar-icon { width: 48px; height: 48px; font-size: 18px; }
    .home-pillars-grid-v2 { grid-template-columns: 1fr 1fr; }
    .pillar-img-card { min-height: 200px; }
    .pillar-img-overlay { padding: 20px 14px; }
    .pillar-img-overlay h3 { font-size: 14px; }
    .pillar-img-overlay p { font-size: 12px; }
    .pillar-img-icon { width: 36px; height: 36px; font-size: 15px; margin-bottom: 10px; }

    /* Stats tighter */
    .stat-number { font-size: 30px; }
    .stat-label { font-size: 10px; letter-spacing: 0.5px; }
    .stat-item { padding: 12px 8px; }

    /* Buttons */
    .hero-btn-primary, .hero-btn-secondary-dark, .btn-outline { padding: 12px 20px; font-size: 13px; }
    .home-headline-btns { flex-direction: column; gap: 10px; }
    .home-headline-btns a { text-align: center; }

    /* MV cards stacked */
    .home-mv-card { padding: 28px 20px; }

    /* Dot nav smaller */
    .dot-nav { right: 6px; gap: 6px; }
    .dot-nav-item { width: 6px; height: 6px; }

    /* Hero inner pages */
    .hero-inner { height: 300px; }
    .hero-inner .hero-content h1 { font-size: 24px; }
    .hero-subtitle { font-size: 13px; }

    /* Footer tight */
    .footer { padding: 40px 16px 30px; }
    .footer-nav-link { font-size: 13px; }
    .footer-social a { width: 36px; height: 36px; font-size: 14px; }
    .footer-contact-item { font-size: 12px; }
    .footer-contact-item i { font-size: 11px; }

    /* Contact form */
    .contact-form input,
    .contact-form select,
    .contact-form textarea { padding: 12px 14px; font-size: 14px; }
    .btn-submit { width: 100%; text-align: center; padding: 14px; }

    /* Breadcrumb */
    .breadcrumb-inner { font-size: 12px; padding: 12px 16px; }

    /* Cookie banner */
    .cookie-banner-inner { padding: 16px; gap: 12px; }
    .cookie-banner-text p { font-size: 12px; }
    .cookie-btn { padding: 10px 16px; font-size: 13px; min-height: 44px; }
}

/* ===== 320px — Very Small Phones (iPhone SE 1st gen, compact devices) ===== */
@media (max-width: 320px) {
    .home-headline-text h2 { font-size: 19px; }
    .home-mv-header h2 { font-size: 18px; }
    .home-amsterdam-text h2 { font-size: 19px; }
    .home-pillars-header h2 { font-size: 19px; }
    .home-companies-inner h2 { font-size: 19px; }
    .home-cta h2 { font-size: 19px; }
    .stat-number { font-size: 26px; }
    .gallery-item { width: 160px; height: 115px; }
    .companies-logo-grid { gap: 8px; }
    .company-logo-card { padding: 16px 10px; }
    .companies-logo-grid-v2 { grid-template-columns: repeat(6, 1fr); gap: 6px; }
    .company-logo-v2 i { font-size: 18px; }
    .pillar-card { padding: 24px 16px; }
    .home-pillars-grid-v2 { grid-template-columns: 1fr 1fr; }
    .pillar-img-card { min-height: 170px; }
    .hero-inner .hero-content h1 { font-size: 20px; }
    .footer-inner { gap: 28px; }
    .footer-inner-v2 { gap: 20px; }
    .footer-nav-link { font-size: 12px; }
    .footer-contact-item { font-size: 11px; word-break: break-word; }
    .footer-copyright { font-size: 11px; }
    .mk-section { padding: 32px 12px; }
    .home-headline { padding: 32px 12px; }
    .home-mv { padding: 32px 12px; }
    .home-amsterdam { padding: 32px 12px; }
    .home-pillars { padding: 32px 12px; }
    .home-companies { padding: 32px 12px; }
    .home-cta { padding: 32px 12px; }
    .home-stats { padding: 28px 12px; }
}

/* ===== 1200px+ — Large Desktops & Ultra-wide ===== */
@media (min-width: 1200px) {
    .home-headline-inner { max-width: 900px; }
    .home-mv-inner { max-width: 1100px; }
    .home-amsterdam-inner { max-width: 1200px; }
    .home-pillars-inner { max-width: 1200px; }
    .home-companies-inner { max-width: 1100px; }
    .home-cta-inner { max-width: 800px; }
    .home-stats-inner { max-width: 1200px; }
    .home-pillars-grid { gap: 32px; }
    .home-pillars-grid-v2 { min-height: 450px; }
    .pillar-img-card { min-height: 400px; }
    .companies-logo-grid { gap: 28px; }
    .companies-logo-grid-v2 { gap: 28px; max-width: 1000px; }
    .company-logo-v2 i { font-size: 36px; }
    .pillar-card { padding: 44px 36px; }
    .company-logo-card { padding: 44px 28px; }
    .home-mv-card { padding: 48px 40px; }
    .gallery-item { width: 320px; height: 230px; }
    .stat-number { font-size: 64px; }
}

/* =========================================================
   ENTERTECH EUROPE — NEW COMPONENTS (2026 rebuild)
   ========================================================= */

/* ===== FOOTER — Entertech Europe (orange) ===== */
.footer-orange {
    background: linear-gradient(135deg, var(--footer-orange-1) 0%, var(--footer-orange-2) 100%);
    color: #fff;
    padding: 70px 60px 36px;
}
.footer-orange .footer-bg { display: none; }
.footer-inner-v3 {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1.2fr 1fr;
    gap: 48px;
    max-width: 1300px;
    margin: 0 auto;
    align-items: start;
}
.footer-brand-col { max-width: 340px; }
.footer-logo { width: 150px; height: auto; margin-bottom: 18px; }
.footer-tagline { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.92); margin-bottom: 22px; }
.footer-orange .footer-social { display: flex; gap: 12px; margin-top: 0; }
.footer-orange .footer-social a {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,0.18);
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 16px; transition: all 0.3s;
}
.footer-orange .footer-social a:hover { background: #fff; color: var(--secondary); opacity: 1; }
.footer-col-title {
    font-size: 13px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
    color: #fff; margin-bottom: 18px;
}
.footer-orange .footer-nav-link {
    font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.9); transition: all 0.25s;
}
.footer-orange .footer-nav-link:hover { color: #fff; padding-left: 4px; opacity: 1; }
.footer-orange .footer-contact-item { font-size: 14px; color: rgba(255,255,255,0.92); line-height: 1.7; margin: 0 0 6px; }
.footer-orange .footer-contact-item i { color: #fff; margin-right: 8px; width: 16px; }
/* Subsidiary logo strip */
.footer-subsidiary {
    max-width: 1300px; margin: 40px auto 0; padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.28);
    display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 18px;
}
.footer-subsidiary-label { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.92); letter-spacing: 0.3px; }
.footer-subsidiary-logos { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 26px; }
.footer-subsidiary-sep {
    color: rgba(255,255,255,0.5);
    font-size: 22px;
    font-weight: 300;
    line-height: 1;
    user-select: none;
}
@media (max-width: 480px) {
    .footer-subsidiary-logos { gap: 14px; }
    .footer-subsidiary-sep { font-size: 18px; }
}
.footer-subsidiary-logo {
    display: inline-flex; align-items: center; justify-content: center;
    transition: opacity 0.3s, transform 0.3s;
}
.footer-subsidiary-logo:hover { transform: translateY(-2px); opacity: 0.85; }
.footer-subsidiary-logo img { width: auto; display: block; }
.footer-subsidiary-logo .sub-logo-entertech { height: 30px; }
.footer-subsidiary-logo .sub-logo-iu { height: 48px; }
.footer-subsidiary-logo .sub-logo-iuc { height: 34px; }
@media (max-width: 480px) {
    .footer-subsidiary-logo .sub-logo-entertech { height: 24px; }
    .footer-subsidiary-logo .sub-logo-iu { height: 40px; }
    .footer-subsidiary-logo .sub-logo-iuc { height: 27px; }
}
.footer-bottom-v3 {
    max-width: 1300px; margin: 24px auto 0; padding-top: 0;
    border-top: none;
    display: flex; justify-content: center; text-align: center;
}
.footer-bottom-v3 .footer-copyright { font-size: 13px; color: rgba(255,255,255,0.9); margin: 0; }
/* Snap footer (homepage) — let the orange footer define its own height */
.snap-footer { min-height: auto; background: transparent; align-items: stretch; }

/* ===== HERO SLIDER (3 rotating banners) ===== */
.snap-section.hero-slider { padding: 0; margin-top: 0; }
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh; height: 100dvh;
    min-height: 600px;
    overflow: hidden;
}
.hero-slide {
    position: absolute; inset: 0;
    opacity: 0; visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
    z-index: 0;
}
.hero-slide.active { opacity: 1; visibility: visible; z-index: 1; }
.hero-slide-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    transform: scale(1.06);
    transition: transform 7s ease;
}
.hero-slide.active .hero-slide-bg { transform: scale(1.14); }
.hero-slide-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(26,43,59,0.85) 0%, rgba(26,43,59,0.55) 48%, rgba(26,43,59,0.28) 100%);
}
.hero-slide-content {
    position: relative; z-index: 2;
    max-width: 1300px; margin: 0 auto; height: 100%;
    display: flex; flex-direction: column; justify-content: center;
    padding: 0 60px; color: #fff;
}
.hero-slide-inner { max-width: 660px; }
.hero-slide.active .hero-slide-inner > * {
    opacity: 0; transform: translateY(24px);
    animation: heroSlideIn 0.7s cubic-bezier(0.16,1,0.3,1) forwards;
}
.hero-slide.active .hero-slide-inner > *:nth-child(1) { animation-delay: 0.25s; }
.hero-slide.active .hero-slide-inner > *:nth-child(2) { animation-delay: 0.4s; }
.hero-slide.active .hero-slide-inner > *:nth-child(3) { animation-delay: 0.55s; }
@keyframes heroSlideIn { to { opacity: 1; transform: none; } }
.hero-slide-label {
    display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: 2.5px;
    text-transform: uppercase; color: var(--secondary-light); margin-bottom: 18px;
}
.hero-slide h1, .hero-slide-title {
    font-size: 56px; font-weight: 800; line-height: 1.1;
    margin-bottom: 28px; text-shadow: 0 2px 30px rgba(0,0,0,0.35);
}
.hero-slide-btn {
    display: inline-block; padding: 16px 38px; background: var(--secondary); color: #fff;
    font-size: 14px; font-weight: 600; letter-spacing: 0.5px;
    border: 1.5px solid var(--secondary); transition: all 0.3s;
}
.hero-slide-btn:hover { background: var(--secondary-dark); border-color: var(--secondary-dark); opacity: 1; transform: translateY(-2px); }
.hero-slider-dots {
    position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
    z-index: 6; display: flex; gap: 12px;
}
.hero-slider-dot {
    width: 38px; height: 4px; border-radius: 2px; border: none;
    background: rgba(255,255,255,0.4); cursor: pointer; transition: all 0.35s; padding: 0;
}
.hero-slider-dot.active { background: var(--secondary); width: 56px; }
.hero-slider-arrow {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 6;
    width: 52px; height: 52px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.4);
    background: rgba(26,43,59,0.35); color: #fff; font-size: 16px; cursor: pointer;
    display: flex; align-items: center; justify-content: center; transition: all 0.3s;
    backdrop-filter: blur(4px);
}
.hero-slider-arrow:hover { background: var(--secondary); border-color: var(--secondary); }
.hero-slider-prev { left: 28px; }
.hero-slider-next { right: 28px; }

/* ===== HOME: SERVICE / CONTENT SECTIONS (NL flag themed) ===== */
.home-service { padding: 100px 60px; width: 100%; background: #fff; }
.snap-section.home-service { padding: 48px 60px; }
.home-service-inner {
    max-width: 1200px; margin: 0 auto; width: 100%;
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.home-service.reverse .home-service-inner { direction: rtl; }
.home-service.reverse .home-service-inner > * { direction: ltr; }
.home-service-label {
    display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; margin-bottom: 18px; padding: 6px 14px; border-radius: 4px;
}
.home-service h2 { font-size: 40px; font-weight: 800; line-height: 1.15; color: var(--primary); margin-bottom: 20px; }
.home-service p { font-size: 17px; color: #555; line-height: 1.85; margin-bottom: 28px; max-width: 540px; }
.home-service .home-service-btn {
    display: inline-block; padding: 14px 32px; border: 1.5px solid var(--primary); color: var(--primary);
    font-size: 14px; font-weight: 600; letter-spacing: 0.5px; transition: all 0.3s;
}
.home-service .home-service-btn:hover { background: var(--primary); color: #fff; opacity: 1; }

/* ===== CTA buttons — right chevron ">" icon ===== */
.hero-slide-btn::after,
.home-service-btn::after,
.btn-more::after,
.btn-outline::after {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f054"; /* fa-chevron-right */
    font-size: 0.8em;
    margin-left: 10px;
    display: inline-block;
    transition: transform 0.3s ease;
}
.hero-slide-btn:hover::after,
.home-service-btn:hover::after,
.btn-more:hover::after,
.btn-outline:hover::after {
    transform: translateX(4px);
}
/* NL flag theming */
.home-service.nl-red { background: linear-gradient(180deg, var(--nl-red-soft) 0%, #fff 70%); }
.home-service.nl-red .home-service-label { color: var(--nl-red); background: rgba(174,28,40,0.09); }
.home-service.nl-blue { background: linear-gradient(180deg, var(--nl-blue-soft) 0%, #fff 70%); }
.home-service.nl-blue .home-service-label { color: var(--nl-blue); background: rgba(33,70,139,0.09); }
.home-service.nl-white { background: #fff; }
.home-service.nl-white .home-service-label { color: var(--secondary); background: rgba(232,114,42,0.09); }

/* ===== SOLID section backgrounds (home flow: navy – orange – white) ===== */
.home-service.navy-solid { background: var(--primary); }
.home-service.orange-solid { background: var(--secondary); }
.home-service.navy-solid h2,
.home-service.orange-solid h2 { color: #fff; }
.home-service.navy-solid p,
.home-service.orange-solid p { color: rgba(255,255,255,0.92); }
.home-service.navy-solid .home-service-btn,
.home-service.orange-solid .home-service-btn { border-color: #fff; color: #fff; }
.home-service.navy-solid .home-service-btn:hover { background: #fff; color: var(--primary); }
.home-service.orange-solid .home-service-btn:hover { background: #fff; color: var(--secondary); }

/* ===== AMBIENT MOTION behind the home sections ===== */
.home-service, .home-amsterdam-orange { position: relative; overflow: hidden; }
.home-service-inner, .home-amsterdam-orange .home-amsterdam-inner { position: relative; z-index: 2; }
.home-service::before, .home-service::after,
.home-amsterdam-orange::before, .home-amsterdam-orange::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    will-change: transform;
}
.home-service::before, .home-amsterdam-orange::before {
    width: 55vw; height: 55vw; max-width: 760px; max-height: 760px;
    top: -18%; left: -12%;
    animation: nlBlobA 20s ease-in-out infinite;
}
.home-service::after, .home-amsterdam-orange::after {
    width: 48vw; height: 48vw; max-width: 640px; max-height: 640px;
    bottom: -22%; right: -12%;
    animation: nlBlobB 26s ease-in-out infinite;
}
/* per-theme glow colours */
.home-service.navy-solid::before { background: radial-gradient(circle, rgba(255,255,255,0.10), transparent 62%); }
.home-service.navy-solid::after { background: radial-gradient(circle, rgba(8,16,28,0.55), transparent 62%); }
.home-service.orange-solid::before,
.home-amsterdam-orange::before { background: radial-gradient(circle, rgba(255,255,255,0.14), transparent 62%); }
.home-service.orange-solid::after,
.home-amsterdam-orange::after { background: radial-gradient(circle, rgba(160,65,12,0.45), transparent 62%); }
.home-service.nl-white::before { background: radial-gradient(circle, rgba(26,43,59,0.06), transparent 62%); }
.home-service.nl-white::after { background: radial-gradient(circle, rgba(232,114,42,0.07), transparent 62%); }
@keyframes nlBlobA { 0%,100%{transform:translate(0,0) scale(1);} 50%{transform:translate(10%,12%) scale(1.08);} }
@keyframes nlBlobB { 0%,100%{transform:translate(0,0) scale(1);} 50%{transform:translate(-10%,-10%) scale(1.1);} }
@media (prefers-reduced-motion: reduce) {
    .home-service::before, .home-service::after,
    .home-amsterdam-orange::before, .home-amsterdam-orange::after { animation: none; }
}

/* ===== HOME: FINAL CTA — full-bleed video background (distinct from service sections, stays blue) ===== */
.snap-section.home-cta-video { padding: 0; }
.home-cta-video {
    position: relative;
    width: 100%;
    overflow: hidden;
    color: #fff;
}
.home-cta-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.home-cta-video-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(26,43,59,0.72) 0%, rgba(22,36,50,0.84) 55%, rgba(14,24,36,0.92) 100%);
}
.home-cta-video-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    padding: 64px 32px;
}
.home-cta-video-content h2 {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 2px 26px rgba(0,0,0,0.35);
}
.home-cta-video-content p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255,255,255,0.92);
    margin: 0 auto 34px;
    max-width: 620px;
    text-shadow: 0 1px 12px rgba(0,0,0,0.3);
}
@media (max-width: 768px) {
    .home-cta-video-content { padding: 48px 22px; }
    .home-cta-video-content h2 { font-size: 30px; }
    .home-cta-video-content p { font-size: 15px; }
}

/* ===== STARTDOCK SECTION — solid orange background ===== */
.home-amsterdam-orange { background: var(--secondary); }
.home-amsterdam-orange .home-amsterdam-lead {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.5;
    color: #fff;
    max-width: 780px;
    margin: 0;
}
@media (max-width: 768px) {
    .home-amsterdam-orange .home-amsterdam-lead { font-size: 19px; }
}

/* ===== MEDIA FRAME (GIF / video placeholder) ===== */
.media-frame {
    position: relative; width: 100%; aspect-ratio: 16/10; border-radius: 16px; overflow: hidden;
    box-shadow: 0 24px 60px rgba(26,43,59,0.18);
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
}
.media-frame img, .media-frame video { width: 100%; height: 100%; object-fit: cover; display: block; }
.media-frame .media-badge {
    position: absolute; top: 14px; left: 14px; z-index: 3;
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
    color: #fff; background: rgba(0,0,0,0.5); padding: 5px 12px; border-radius: 20px;
    backdrop-filter: blur(4px);
}
.media-frame .media-play {
    position: absolute; inset: 0; z-index: 2; display: flex; align-items: center; justify-content: center;
    pointer-events: none;
}
.media-frame .media-play span {
    width: 64px; height: 64px; border-radius: 50%;
    background: rgba(255,255,255,0.18); border: 1.5px solid rgba(255,255,255,0.55);
    display: flex; align-items: center; justify-content: center; color: #fff; font-size: 20px;
    backdrop-filter: blur(4px); transition: all 0.3s;
}
.media-frame:hover .media-play span { background: var(--secondary); border-color: var(--secondary); }

/* ===== ENTERTECH CARD GRID (Companies / Partners) ===== */
.ee-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.ee-card {
    background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 28px;
    display: flex; flex-direction: column; transition: all 0.35s ease;
}
.ee-card:hover { border-color: transparent; box-shadow: 0 16px 44px rgba(0,0,0,0.1); transform: translateY(-6px); }
.ee-card-logo {
    width: 84px; height: 84px; border-radius: 12px; background: var(--light-bg);
    display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
    color: #c2ccd6; font-size: 26px; overflow: hidden; flex-shrink: 0;
}
.ee-card-logo img { max-width: 72%; max-height: 72%; object-fit: contain; }
.ee-card h3 { font-size: 18px; font-weight: 700; color: var(--ink); margin: 0 0 12px; }
.ee-card-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.ee-tag { font-size: 12px; font-weight: 600; padding: 4px 11px; border-radius: 20px; background: rgba(232,114,42,0.09); color: var(--secondary); }
.ee-tag.country { background: var(--light-bg); color: #555; }
.ee-tag.category { background: rgba(33,70,139,0.09); color: var(--nl-blue); }
.ee-card p { font-size: 14px; color: var(--muted); line-height: 1.7; margin: 0 0 18px; flex: 1; }
.ee-card-link { font-size: 13px; font-weight: 600; color: var(--secondary); display: inline-flex; align-items: center; gap: 6px; transition: gap 0.3s; }
.ee-card:hover .ee-card-link { gap: 10px; }

/* ===== EMPTY STATE (Companies / Partners — data pending) ===== */
.ee-empty {
    text-align: center; max-width: 620px; margin: 0 auto; padding: 52px 36px;
    border: 1.5px dashed #d8dee5; border-radius: 16px; background: var(--light-bg);
}
.ee-empty i { font-size: 36px; color: #c2ccd6; margin-bottom: 16px; }
.ee-empty h3 { font-size: 20px; color: var(--ink); margin: 0 0 10px; }
.ee-empty p { font-size: 15px; color: var(--muted); line-height: 1.7; margin: 0; }

/* ===== ENTERTECH TABLE (Companies) ===== */
.ee-table-wrap { width: 100%; overflow-x: auto; border-radius: 14px; border: 1px solid var(--border); -webkit-overflow-scrolling: touch; }
.ee-table { width: 100%; border-collapse: collapse; background: #fff; min-width: 820px; }
.ee-table thead th {
    text-align: left; font-size: 12px; font-weight: 700; letter-spacing: 0.6px; text-transform: uppercase;
    color: #fff; background: var(--primary); padding: 16px 20px; white-space: nowrap;
}
.ee-table tbody td { padding: 18px 20px; font-size: 14px; color: var(--muted); border-top: 1px solid var(--border); vertical-align: middle; }
.ee-table tbody tr { transition: background 0.2s; }
.ee-table tbody tr:hover { background: var(--light-bg); }
.ee-table-logo {
    width: 56px; height: 56px; border-radius: 10px; background: var(--light-bg);
    display: flex; align-items: center; justify-content: center; color: #c2ccd6; font-size: 20px; overflow: hidden; flex-shrink: 0;
}
.ee-table-logo img { max-width: 74%; max-height: 74%; object-fit: contain; }
.ee-table .ee-cell-name { font-weight: 700; color: var(--ink); font-size: 15px; }
.ee-table td.ee-desc { color: var(--muted); max-width: 340px; line-height: 1.6; }
.ee-table td .ee-card-link { font-size: 13px; white-space: nowrap; }

/* Mobile: turn each row into a stacked card */
@media (max-width: 768px) {
    .ee-table-wrap { overflow-x: visible; border: none; border-radius: 0; }
    .ee-table { min-width: 0; }
    .ee-table thead { position: absolute; left: -9999px; }
    .ee-table, .ee-table tbody, .ee-table tr, .ee-table td { display: block; width: 100%; }
    .ee-table tbody tr {
        border: 1px solid var(--border); border-radius: 14px; margin-bottom: 16px;
        padding: 8px 0; background: #fff;
    }
    .ee-table tbody td {
        border-top: none; padding: 8px 18px;
        display: flex; flex-direction: column; align-items: flex-start; gap: 4px;
    }
    .ee-table tbody td::before {
        content: attr(data-label);
        font-size: 11px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; color: var(--secondary);
    }
    .ee-table td.ee-desc { max-width: none; }
}

/* ===== RESPONSIVE — new components ===== */
@media (max-width: 1024px) {
    .footer-inner-v3 { grid-template-columns: 1fr 1fr; gap: 40px; }
    .home-service-inner { gap: 40px; }
    .ee-card-grid { grid-template-columns: 1fr 1fr; }
    .hero-slide h1, .hero-slide-title { font-size: 44px; }
}
@media (max-width: 768px) {
    .footer-orange { padding: 50px 20px 28px; }
    .footer-inner-v3 { grid-template-columns: 1fr; gap: 32px; text-align: center; }
    .footer-brand-col { max-width: 100%; margin: 0 auto; }
    .footer-col { align-items: center; }
    .footer-orange .footer-social { justify-content: center; }
    .hero-slider { min-height: 520px; }
    .hero-slide-content { padding: 0 24px; }
    .hero-slide-label { font-size: 12px; letter-spacing: 2px; }
    .hero-slide h1, .hero-slide-title { font-size: 30px; }
    .hero-slider-arrow { display: none; }
    .home-service { padding: 60px 20px; }
    .snap-section.home-service { padding: 40px 20px; }
    .home-service-inner { grid-template-columns: 1fr; gap: 30px; }
    .home-service.reverse .home-service-inner { direction: ltr; }
    .home-service h2 { font-size: 28px; }
    .home-service p { font-size: 15px; }
    .ee-card-grid { grid-template-columns: 1fr; gap: 16px; }
}
@media (max-width: 480px) {
    .hero-slide h1, .hero-slide-title { font-size: 25px; }
    .hero-slide-btn { padding: 13px 26px; font-size: 13px; }
    .home-service h2 { font-size: 23px; }
    .footer-logo { width: 130px; }
}
