:root {
    --white: #ffffff;
    --black: #0a0a0a;
    --navy: #1b365d;
    --blue: #0073b1;
    --sky: #4aa3d1;
    --ice: #e8f4fb;
    --mist: #f3f8fc;
    --bg: var(--mist);
    --ink: #132742;
    --muted: rgba(19, 39, 66, 0.68);
    --brand: var(--blue);
    --brand-dark: var(--navy);
    --accent: var(--sky);
    --grad-brand: linear-gradient(135deg, #0073b1 0%, #1b365d 100%);
    --grad-soft: linear-gradient(180deg, #f7fbfe 0%, #ffffff 48%, #eef6fb 100%);
    --grad-hero: linear-gradient(135deg, #0f2748 0%, #1b365d 48%, #0073b1 100%);
    --font: "Outfit", sans-serif;
    --display: "Outfit", sans-serif;
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --reveal-duration: 0.85s;
    --container: 1180px;
    --container-pad: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, button, input, select, textarea, h1, h2, h3, h4, h5, h6, p, a, span, li, label, strong, em {
    font-family: "Outfit", sans-serif;
}
body {
    margin: 0;
    font-family: var(--font);
    color: var(--ink);
    background: #ffffff;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-pad);
    padding-right: var(--container-pad);
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    width: 100%;
    margin: 0;
    padding: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.72) 12%, rgba(255, 255, 255, 0.2) 26%, rgba(0, 0, 0, 0) 38%),
        rgba(27, 54, 93, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.is-home .site-header {
    position: fixed;
}
.is-inner .site-header {
    position: sticky;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.72) 12%, rgba(255, 255, 255, 0.2) 26%, rgba(27, 54, 93, 0) 38%),
        #1b365d;
}
.is-inner main {
    padding-top: 0;
}
.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}
.brand-logo {
    display: block;
    height: 80px;
    width: auto;
    max-width: 260px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px 22px;
}
.main-nav > a {
    font-family: var(--font);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-transform: none;
    color: #ffffff;
    text-decoration: none;
    background: transparent;
    border: 0;
    padding: 8px 0;
    cursor: pointer;
    white-space: nowrap;
}
.main-nav > a {
    position: relative;
}
.main-nav > a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4px;
    height: 2px;
    background: var(--white);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s var(--ease-out);
}
.main-nav > a:hover::after,
.main-nav > a.active::after {
    transform: scaleX(1);
}
.main-nav > a:hover,
.main-nav > a.active {
    color: var(--white);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.12);
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
}
.nav-toggle span {
    display: block;
    height: 2px;
    background: #fff;
    border-radius: 2px;
}

.page-hero {
    max-width: 1120px;
    margin: 0 auto;
    padding: 48px 24px 20px;
}
.page-hero-inner {
    max-width: 720px;
}
.page-body {
    max-width: 1120px;
    margin: 0 auto;
    padding: 10px 24px 80px;
}
.panel-block {
    background: rgba(255,255,255,0.88);
    border: 1px solid rgba(27, 54, 93, 0.08);
    border-radius: 18px;
    padding: 28px;
}
.panel-block h2 {
    margin: 0 0 10px;
    color: var(--brand-dark);
}
.panel-block p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
}
.btn-primary {
    background: var(--grad-brand);
    color: var(--white);
    border: 1px solid transparent;
    transition: transform 0.35s var(--ease-out), background 0.35s ease, box-shadow 0.35s ease, color 0.35s ease, filter 0.35s ease;
}
.btn-primary:hover {
    background: linear-gradient(135deg, #0a86c7 0%, #132742 100%);
    border-color: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(0, 115, 177, 0.28);
    filter: brightness(1.03);
}
.btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.45);
}
.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* Page content buttons (non-slider) */
.page-body .btn-secondary,
.features ~ * .btn-secondary,
.panel-block .btn-secondary {
    background: transparent;
    color: var(--ink);
    border: 1px solid rgba(27, 54, 93, 0.18);
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    max-height: none;
    overflow: hidden;
    background: #1b365d;
}
.slides {
    position: relative;
    width: 100%;
    height: 100%;
}
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.85s ease, visibility 0.85s ease;
}
.slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 1;
}
.slide-bg {
    position: absolute;
    inset: 0;
    transform: scale(1.08);
    transition: transform 6.5s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.slide-bg.has-image {
    background-color: #1b365d;
}

.slide.is-active .slide-bg {
    transform: scale(1);
}
.slide-bg-1 {
    background-image:
        linear-gradient(120deg, rgba(19, 39, 66, 0.55), rgba(27, 54, 93, 0.25)),
        radial-gradient(circle at 20% 30%, rgba(27, 54, 93, 0.45), transparent 40%),
        linear-gradient(160deg, #0a0a0a 0%, #1b365d 45%, #1b365d 100%);
}
.slide-bg-2 {
    background-image:
        linear-gradient(120deg, rgba(19, 39, 66, 0.5), rgba(27, 54, 93, 0.2)),
        radial-gradient(circle at 80% 20%, rgba(27, 54, 93, 0.4), transparent 42%),
        linear-gradient(160deg, #0f1c30 0%, #1b365d 50%, #1b365d 100%);
}
.slide-bg-3 {
    background-image:
        linear-gradient(120deg, rgba(19, 39, 66, 0.55), rgba(27, 54, 93, 0.25)),
        radial-gradient(circle at 50% 80%, rgba(27, 54, 93, 0.35), transparent 45%),
        linear-gradient(160deg, #0a0a0a 0%, #1b365d 48%, #142a4a 100%);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(19, 39, 66, 0.35);
    color: #fff;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition: background 0.2s ease, border-color 0.2s ease;
}
.slider-btn:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--navy);
}
.slider-btn.prev { left: 18px; }
.slider-btn.next { right: 18px; }

.slider-dots {
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    gap: 10px;
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    padding: 0;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, width 0.2s ease;
}
.dot.is-active {
    width: 28px;
    border-radius: 999px;
    background: #fff;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.78rem;
    color: var(--brand);
    font-weight: 700;
    margin: 0 0 14px;
}
.lede {
    max-width: 34rem;
    font-size: 1.12rem;
    line-height: 1.6;
    color: var(--muted);
    margin: 0 0 28px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.page-hero-inner h1 {
    color: var(--navy);
}
.welcome-section {
    position: relative;
    padding: 90px 24px;
    background: #ffffff;
}
.welcome-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 48px;
    align-items: center;
}
.welcome-media-frame {
    position: relative;
    min-height: 460px;
    display: grid;
    place-items: center;
}
.welcome-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    animation: float 6s ease-in-out infinite;
}
.welcome-orb-a {
    width: 240px;
    height: 240px;
    background: rgba(27, 54, 93, 0.22);
    top: 30px;
    left: 20px;
}
.welcome-orb-b {
    width: 170px;
    height: 170px;
    background: rgba(27, 54, 93, 0.18);
    right: 30px;
    bottom: 40px;
    animation-delay: -2s;
}
.welcome-media-card {
    position: relative;
    z-index: 1;
    width: min(100%, 420px);
    min-height: 560px;
    aspect-ratio: auto;
    border-radius: 28px;
    padding: 28px;
    background:
        linear-gradient(160deg, #132742 0%, #1b365d 46%, #1b365d 100%);
    box-shadow: 0 28px 60px rgba(27, 54, 93, 0.28);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}
.welcome-media-card::after {
    content: "";
    position: absolute;
    inset: auto -40px -40px auto;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 18px solid rgba(255, 255, 255, 0.08);
}
.welcome-logo {
    width: min(72%, 220px);
    height: auto;
    background: #fff;
    border-radius: 14px;
    padding: 12px 14px;
    object-fit: contain;
}
.welcome-media-highlights {
    list-style: none;
    margin: 22px 0 0;
    padding: 0;
    display: grid;
    gap: 14px;
}
.welcome-media-highlights li {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 12px;
    align-items: center;
    min-height: 64px;
    padding: 14px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(4px);
    transition: transform 0.3s ease, background 0.3s ease;
}
.welcome-media-highlights li:hover {
    transform: translateX(4px);
    background: rgba(255, 255, 255, 0.18);
}
.wmh-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}
.wmh-icon svg {
    width: 18px;
    height: 18px;
}
.welcome-media-highlights strong {
    display: block;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2px;
}
.welcome-media-highlights p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.78rem;
    line-height: 1.35;
}
.welcome-media-caption {
    margin: 16px 0 0;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.9);
}
.welcome-content {
    max-width: 560px;
}
.welcome-section .eyebrow {
    margin-bottom: 12px;
}
.welcome-section h2 {
    margin: 0 0 16px;
    font-family: var(--display);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    color: var(--brand-dark);
}
.welcome-text {
    margin: 0 0 26px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--muted);
}
.welcome-highlights {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: grid;
    gap: 14px;
}
.welcome-highlights li {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    align-items: start;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(27, 54, 93, 0.08);
    box-shadow: 0 8px 22px rgba(27, 54, 93, 0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.welcome-highlights li:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(27, 54, 93, 0.08);
}
.hi-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #1b365d, #1b365d);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
}
.welcome-highlights strong {
    display: block;
    margin-bottom: 4px;
    color: var(--brand-dark);
    font-size: 1rem;
}
.welcome-highlights p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.5;
}
.welcome-section .hero-actions {
    justify-content: flex-start;
}
.btn-ghost-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    background: rgba(0, 115, 177, 0.06);
    color: var(--navy);
    border: 1px solid rgba(0, 115, 177, 0.28);
    transition: transform 0.35s var(--ease-out), background 0.35s ease, color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.btn-ghost-dark:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 115, 177, 0.22);
}

@media (max-width: 960px) {
    .welcome-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .welcome-media-frame {
        min-height: 380px;
    }
    .welcome-content {
        max-width: none;
    }
}

.products-section {
    position: relative;
    padding: 90px 24px 100px;
    overflow: hidden;
    background: #f4f9fd;
}
.products-section::before,
.products-section::after {
    content: none;
    display: none;
}
.products-head {
    max-width: 720px;
    margin: 0 auto 54px;
    text-align: center;
}
.products-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 14px;
    color: var(--brand);
    font-weight: 700;
    font-size: 0.92rem;
}
.products-label-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1b365d, #1b365d);
    box-shadow: 0 0 0 4px rgba(27, 54, 93, 0.12);
}
.products-head h2 {
    margin: 0 0 14px;
    font-size: clamp(2rem, 4.5vw, 3rem);
    line-height: 1.15;
    color: var(--brand-dark);
}
.products-head h2 em {
    font-style: italic;
    font-family: "Outfit", sans-serif;
    font-weight: 600;
}
.products-lead {
    margin: 0;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.65;
}
.products-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px 22px;
    padding-top: 48px;
}
.product-card {
    position: relative;
    background: #fff;
    border-radius: 22px;
    padding: 86px 22px 24px;
    text-align: center;
    border: 1px solid rgba(27, 54, 93, 0.06);
    box-shadow: 0 16px 36px rgba(27, 54, 93, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 40px rgba(27, 54, 93, 0.12);
}
.product-photo {
    position: absolute;
    top: -42px;
    left: 50%;
    transform: translateX(-50%);
    width: 118px;
    height: 118px;
    border-radius: 50%;
    padding: 6px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(27, 54, 93, 0.16);
}
.product-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}
.product-card h3 {
    margin: 0 0 10px;
    font-size: 1.12rem;
    color: var(--brand-dark);
}
.product-card p {
    margin: 0 0 18px;
    min-height: 72px;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.55;
}
.product-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    padding: 11px 18px;
    border-radius: 999px;
    background: linear-gradient(90deg, #1b365d 0%, #1b365d 100%);
    color: #fff;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.product-btn:hover {
    color: #fff;
    filter: brightness(1.05);
}
.products-more {
    margin-top: 42px;
    text-align: center;
}
.explore-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 14px 28px;
    border-radius: 999px;
    background: #1b365d;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 14px 30px rgba(27, 54, 93, 0.22);
}
.explore-btn:hover {
    color: #fff;
    background: #132742;
}

@media (max-width: 1100px) {
    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 56px 22px;
        padding-top: 20px;
    }
}
@media (max-width: 640px) {
    .products-section::before,
    .products-section::after {
        display: none;
    }
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 360px;
    }
}

.video-section {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    height: 100vh;
    min-height: 560px;
    overflow: hidden;
    background: #0a0a0a;
}
.video-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}
.video-poster {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.video-frame {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 */
    min-height: 100%;
    min-width: 177.78vh; /* 16:9 cover */
    transform: translate(-50%, -50%);
    border: 0;
    pointer-events: none;
    z-index: 1;
}
.video-shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(8, 18, 32, 0.15) 0%, rgba(8, 18, 32, 0.55) 75%),
        linear-gradient(180deg, rgba(8, 18, 32, 0.35) 0%, rgba(8, 18, 32, 0.5) 100%);
    z-index: 2;
}
.video-caption {
    position: relative;
    z-index: 3;
    height: 100%;
    min-height: inherit;
    display: grid;
    place-content: center;
    text-align: center;
    padding: 48px 24px;
    color: #fff;
}
.video-line {
    margin: 0;
    font-family: "Outfit", sans-serif;
    font-weight: 500;
    letter-spacing: 0.01em;
    font-size: clamp(1.35rem, 3.2vw, 2.35rem);
    line-height: 1.35;
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}
.video-caption-accent {
    margin-top: 12px !important;
    font-weight: 700 !important;
    font-size: clamp(1.75rem, 4.2vw, 3.1rem) !important;
    letter-spacing: -0.01em;
}
.video-section.is-visible .video-line-1 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.15s;
}
.video-section.is-visible .video-line-2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.45s;
}
.video-section.is-visible .video-line {
    animation: video-text-float 5.5s ease-in-out 1.2s infinite;
}
.video-section.is-visible .video-line-2 {
    animation-delay: 1.5s;
}

@keyframes video-text-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 768px) {
    .video-section {
        height: 85vh;
        min-height: 480px;
    }
    .video-line {
        font-size: clamp(1.25rem, 5.2vw, 1.85rem);
    }
    .video-caption-accent {
        font-size: clamp(1.5rem, 6.2vw, 2.25rem) !important;
    }
}

.certificates-section {
    position: relative;
    padding: 70px 24px 80px;
    background: #ffffff;
}
.certificates-head {
    max-width: 980px;
    margin: 0 auto 42px;
    display: flex;
    align-items: center;
    gap: 18px;
    justify-content: center;
}
.certificates-head h2 {
    margin: 0;
    white-space: nowrap;
    font-size: clamp(1.35rem, 2.8vw, 1.9rem);
    color: #0a0a0a;
    font-weight: 600;
}
.certificates-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(49, 68, 92, 0.35), transparent);
    max-width: 180px;
}
.certificates-grid {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 24px;
    align-items: center;
}
.cert-item {
    display: grid;
    place-items: center;
    min-height: 110px;
    padding: 12px;
    background: transparent;
}
.cert-item img {
    width: min(100%, 140px);
    height: 88px;
    object-fit: contain;
    filter: grayscale(0.05);
    transition: transform 0.2s ease, filter 0.2s ease;
}
.cert-item:hover img {
    transform: translateY(-3px) scale(1.04);
    filter: none;
}

@media (max-width: 900px) {
    .certificates-head {
        flex-direction: column;
        gap: 10px;
    }
    .certificates-line {
        width: 80px;
        max-width: none;
    }
    .certificates-head h2 {
        white-space: normal;
        text-align: center;
    }
    .certificates-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
@media (max-width: 560px) {
    .certificates-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.why-choose-section {
    position: relative;
    padding: 100px 24px 110px;
    overflow: hidden;
    background:
        radial-gradient(ellipse 70% 55% at 50% -10%, rgba(0, 115, 177, 0.1), transparent 60%),
        radial-gradient(circle at 92% 88%, rgba(27, 54, 93, 0.06), transparent 42%),
        #f4f9fd;
}
.why-choose-section::after {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 28px solid rgba(0, 115, 177, 0.05);
    transform: translate(-40%, -30%);
    pointer-events: none;
    z-index: 0;
}
.why-choose-head {
    position: relative;
    z-index: 1;
    max-width: 780px;
    margin: 0 auto 56px;
    text-align: center;
}
.why-choose-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    padding: 8px 16px;
    font-family: "Outfit", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #0073b1;
    background: rgba(0, 115, 177, 0.08);
    border: 1px solid rgba(0, 115, 177, 0.16);
    border-radius: 999px;
}
.why-choose-tag::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #0073b1;
    box-shadow: 0 0 0 4px rgba(0, 115, 177, 0.18);
    flex-shrink: 0;
}
.why-choose-head h2 {
    margin: 0;
    font-size: clamp(2rem, 4.2vw, 3rem);
    color: #1b365d;
    line-height: 1.18;
    letter-spacing: -0.02em;
    font-weight: 700;
}
.why-choose-title {
    display: inline-block;
    max-width: 18ch;
}
.why-choose-accent {
    display: block;
    width: 72px;
    height: 4px;
    margin: 18px auto 20px;
    border-radius: 999px;
    background: linear-gradient(90deg, #0073b1 0%, #1b365d 100%);
    box-shadow: 0 6px 16px rgba(0, 115, 177, 0.28);
    animation: whyAccentPulse 2.8s ease-in-out infinite;
}
@keyframes whyAccentPulse {
    0%, 100% { width: 72px; opacity: 1; }
    50% { width: 96px; opacity: 0.88; }
}
.why-choose-lead {
    margin: 0 auto;
    max-width: 36em;
    color: #5b6b7c;
    font-size: 1.08rem;
    line-height: 1.7;
    font-weight: 400;
}

.why-bento {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    align-items: stretch;
}
.why-tile {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0, 115, 177, 0.12);
    box-shadow: 0 16px 36px rgba(27, 54, 93, 0.07);
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease, border-color 0.4s ease;
}
.why-tile:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 115, 177, 0.28);
    box-shadow: 0 24px 48px rgba(0, 115, 177, 0.14);
}
.why-tile-accent {
    background: #fff;
    border-color: rgba(0, 115, 177, 0.12);
    color: inherit;
}
.why-tile-media {
    position: relative;
    overflow: hidden;
    height: 320px;
    flex-shrink: 0;
    background: #132742;
}
.why-tile-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.55s var(--ease-out);
}
.why-tile:hover .why-tile-media img {
    transform: scale(1.05);
}
.why-tile-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(10, 20, 40, 0.28) 100%);
    pointer-events: none;
}
.why-tile-body {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.why-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 44px;
    height: 28px;
    margin-bottom: 12px;
    padding: 0 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, #0073b1, #1b365d);
    color: #fff !important;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}
.why-tile-accent .why-num {
    background: linear-gradient(90deg, #0073b1, #1b365d);
    color: #fff !important;
}
.why-tile-body h3 {
    margin: 0 0 8px;
    font-size: 1.28rem;
    color: var(--brand-dark);
    line-height: 1.25;
}
.why-tile-accent .why-tile-body h3 {
    color: var(--brand-dark);
}
.why-tile-body > p {
    margin: 0 0 14px;
    color: var(--muted);
    line-height: 1.6;
    font-size: 0.96rem;
}
.why-tile-accent .why-tile-body > p {
    color: var(--muted);
}
.why-tile-body ul {
    margin: auto 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}
.why-tile-body li {
    position: relative;
    padding-left: 18px;
    color: rgba(19, 39, 66, 0.72);
    font-size: 0.9rem;
    font-weight: 500;
}
.why-tile-accent .why-tile-body li {
    color: rgba(19, 39, 66, 0.72);
}
.why-tile-body li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0073b1, #1b365d);
}
.why-tile-accent .why-tile-body li::before {
    background: linear-gradient(135deg, #0073b1, #1b365d);
}

@media (max-width: 800px) {
    .why-bento {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .why-tile-media {
        height: 260px;
    }
}

.export-section {
    padding: 88px 24px 96px;
    background: #ffffff;
    border-top: 1px solid rgba(27, 54, 93, 0.06);
}
.export-inner {
    max-width: 1180px;
    margin: 0 auto;
    width: 100%;
}
.export-tag {
    margin: 0 0 12px;
    font-family: "Outfit", sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--brand);
}
.export-section h2 {
    margin: 0 0 18px;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    line-height: 1.15;
    color: var(--brand-dark);
    max-width: none;
    width: 100%;
}
.export-text {
    margin: 0 0 28px;
    max-width: none;
    width: 100%;
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--muted);
}
.export-checks {
    list-style: none;
    margin: 0 0 40px;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 28px;
    width: 100%;
}
.export-checks li {
    position: relative;
    padding-left: 34px;
    color: var(--brand-dark);
    font-size: 1.02rem;
    font-weight: 600;
    line-height: 1.45;
}
.export-checks li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(27, 54, 93, 0.12);
    color: var(--brand);
    font-size: 0.85rem;
    font-weight: 700;
}
.export-logistics {
    max-width: none;
    width: 100%;
    margin: 8px 0 40px;
    padding: 28px 28px 30px;
    border-radius: 22px;
    background:
        radial-gradient(circle at 100% 0%, rgba(27, 54, 93, 0.10), transparent 42%),
        linear-gradient(160deg, #ffffff 0%, #ffffff 55%, #ffffff 100%);
    border: 1px solid rgba(27, 54, 93, 0.08);
    box-shadow: 0 18px 40px rgba(27, 54, 93, 0.06);
}
.export-logistics-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}
.export-logistics-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #1b365d;
}
.export-logistics-label::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #1b365d;
    box-shadow: 0 0 0 4px rgba(27, 54, 93, 0.15);
}
.export-logistics-head p {
    margin: 0;
    max-width: none;
    flex: 1;
    font-size: 0.92rem;
    line-height: 1.5;
    color: rgba(27, 54, 93, 0.65);
    text-align: right;
}
.export-rail {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.export-rail-track {
    position: absolute;
    top: 46px;
    left: 9%;
    right: 9%;
    height: 2px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: none;
    z-index: 0;
}
.export-rail-track::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, #1b365d 12%, #1b365d 50%, #1b365d 88%, transparent);
    opacity: 0.35;
}
.export-rail-track span {
    position: relative;
    z-index: 1;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #1b365d;
    box-shadow: 0 0 0 4px rgba(27, 54, 93, 0.12);
    margin: 0 auto;
}
.export-card {
    position: relative;
    z-index: 1;
    padding: 20px 16px 18px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(27, 54, 93, 0.08);
    box-shadow: 0 10px 24px rgba(27, 54, 93, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.export-card:hover {
    transform: translateY(-8px);
    border-color: rgba(27, 54, 93, 0.28);
    box-shadow: 0 22px 40px rgba(27, 54, 93, 0.12);
}
.export-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.export-card-num {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: rgba(27, 54, 93, 0.45);
}
.export-card-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    color: #fff;
    background: linear-gradient(145deg, #1b365d, #1b365d);
    box-shadow: 0 10px 20px rgba(27, 54, 93, 0.2);
}
.export-card[data-mode="rail"] .export-card-icon {
    background: linear-gradient(145deg, #1b365d, #132742);
}
.export-card[data-mode="sea"] .export-card-icon {
    background: linear-gradient(145deg, #1b365d, #1b365d);
}
.export-card[data-mode="air"] .export-card-icon {
    background: linear-gradient(145deg, #1b365d, #1b365d);
}
.export-card-icon svg {
    width: 28px;
    height: 28px;
}
.export-card h3 {
    margin: 0 0 8px;
    font-size: 1.12rem;
    font-weight: 700;
    color: #1b365d;
}
.export-card p {
    margin: 0 0 14px;
    font-size: 0.86rem;
    line-height: 1.5;
    color: rgba(27, 54, 93, 0.68);
    min-height: 2.6em;
}
.export-card-tag {
    display: inline-block;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #1b365d;
    background: rgba(27, 54, 93, 0.1);
}
.export-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 4px;
    padding-top: 28px;
    border-top: 1px solid rgba(27, 54, 93, 0.08);
}

@media (max-width: 900px) {
    .export-rail {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }
    .export-rail-track {
        display: none;
    }
    .export-logistics-head p {
        text-align: left;
        max-width: none;
    }
    .export-checks {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .export-logistics {
        padding: 20px 16px 22px;
        border-radius: 18px;
    }
    .export-rail {
        grid-template-columns: 1fr;
    }
    .export-card p {
        min-height: 0;
    }
}

.news-section {
    padding: 90px 24px 100px;
    background: #f4f9fd;
}
.news-head {
    max-width: 720px;
    margin: 0 auto 42px;
    text-align: center;
}
.news-tag {
    margin: 0 0 10px;
    font-family: "Outfit", sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    color: var(--brand);
}
.news-head h2 {
    margin: 0 0 12px;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    color: var(--brand-dark);
}
.news-lead {
    margin: 0;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.65;
}
.news-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}
.blog-page-grid {
    margin-bottom: 28px;
}
.news-card {
    background: #fff;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(27, 54, 93, 0.08);
    box-shadow: 0 14px 34px rgba(27, 54, 93, 0.06);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(27, 54, 93, 0.12);
}
.news-card-media {
    display: block;
    aspect-ratio: 16 / 10;
    background: #132742;
    overflow: hidden;
}
.news-card-media img,
.news-fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.news-fallback {
    background:
        linear-gradient(135deg, #132742, #1b365d);
}
.news-card-body {
    padding: 20px 20px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.news-meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.8rem;
    color: var(--brand);
    font-weight: 600;
}
.news-card h3 {
    margin: 0 0 10px;
    font-size: 1.15rem;
    line-height: 1.35;
}
.news-card h3 a {
    color: var(--brand-dark);
    text-decoration: none;
}
.news-card h3 a:hover {
    color: var(--brand);
}
.news-card p {
    margin: 0 0 16px;
    color: var(--muted);
    line-height: 1.55;
    flex: 1;
}
.news-link {
    color: var(--brand);
    font-weight: 700;
    text-decoration: none;
}
.news-link:hover {
    color: var(--brand-dark);
}
.news-more {
    margin-top: 36px;
    text-align: center;
}
.news-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 20px;
    color: var(--muted);
}
.blog-cover {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
    border-radius: 14px;
    margin-bottom: 22px;
}
.blog-excerpt {
    font-size: 1.08rem;
    color: var(--brand-dark);
    font-weight: 600;
    line-height: 1.6;
    margin: 0 0 18px;
}
.blog-content {
    color: var(--muted);
    line-height: 1.75;
    font-size: 1.02rem;
}
.blog-pagination {
    display: flex;
    justify-content: center;
}

@media (max-width: 960px) {
    .news-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 640px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}

.features {
    max-width: 1120px;
    margin: 0 auto;
    padding: 56px 24px 90px;
}
.features h2 {
    font-family: var(--display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin: 0 0 10px;
    color: var(--brand-dark);
}
.section-lead { color: var(--muted); margin: 0 0 28px; }
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.feature-grid article {
    background: rgba(255,255,255,0.82);
    border: 1px solid rgba(27, 54, 93, 0.08);
    border-radius: 18px;
    padding: 22px;
}
.feature-grid h3 { margin: 0 0 8px; color: var(--brand-dark); }
.feature-grid p { margin: 0; color: var(--muted); line-height: 1.5; }

.site-footer {
    background: linear-gradient(180deg, var(--navy) 0%, var(--black) 100%);
    color: rgba(255, 255, 255, 0.82);
    margin-top: 0;
}
.footer-top {
    max-width: 1180px;
    margin: 0 auto;
    padding: 64px 24px 42px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr 0.9fr 1.15fr;
    gap: 36px;
}
.footer-logo {
    display: inline-flex;
    background: #fff;
    border-radius: 14px;
    padding: 10px 12px;
    margin-bottom: 16px;
}
.footer-logo img {
    display: block;
    height: 46px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
}
.footer-brand p {
    margin: 0 0 20px;
    max-width: 320px;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.65;
    font-size: 0.98rem;
}
.footer-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: background 0.2s ease, transform 0.2s ease;
}
.footer-social a:hover {
    background: var(--white);
    transform: translateY(-3px) scale(1.05);
    color: var(--navy);
}
.footer-col h4 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
}
.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}
.footer-col a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.25s ease, transform 0.25s ease;
}
.footer-col a:hover {
    color: #ffffff;
}
.footer-contact li {
    display: grid;
    gap: 2px;
}
.footer-contact span {
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 700;
}
.footer-cta {
    display: inline-flex;
    margin-top: 18px;
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--white);
    color: var(--navy) !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
    transition: transform 0.35s var(--ease-out), background 0.35s ease, color 0.35s ease;
}
.footer-cta:hover {
    background: var(--black);
    color: var(--white) !important;
    transform: translateY(-3px);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    max-width: 1180px;
    margin: 0 auto;
    padding: 18px 24px 28px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}
.footer-bottom p {
    margin: 0;
}
.footer-bottom-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.footer-bottom-links a {
    color: rgba(215, 228, 240, 0.75);
    text-decoration: none;
}
.footer-bottom-links a:hover {
    color: #fff;
}

@media (max-width: 980px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

@media (max-width: 1100px) {
    .nav-toggle { display: flex; }
    .main-nav {
        display: none;
        position: absolute;
        top: calc(100% + 8px);
        right: 24px;
        left: 24px;
        background: #fff;
        border: 1px solid rgba(27, 54, 93, 0.10);
        border-radius: 16px;
        box-shadow: 0 18px 40px rgba(27, 54, 93, 0.12);
        padding: 14px;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }
    .main-nav.open { display: flex; }
    .main-nav > a {
        width: 100%;
        text-align: left;
        padding: 12px 10px;
        border-radius: 10px;
        color: var(--navy);
    }
    .main-nav > a::after { display: none; }
    .main-nav > a:hover,
    .main-nav > a.active {
        background: rgba(27, 54, 93, 0.08);
        color: var(--black);
    }
}

@media (max-width: 900px) {
    .hero-slider {
        height: 100vh;
        min-height: 100vh;
        max-height: none;
    }
    .slider-btn { display: none; }
    .feature-grid { grid-template-columns: 1fr; }
}

/* ========== Xenora Motion System (white / black / navy) ========== */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity var(--reveal-duration) var(--ease-out), transform var(--reveal-duration) var(--ease-out);
    will-change: opacity, transform;
}
.reveal.is-in {
    opacity: 1;
    transform: none;
}
.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity var(--reveal-duration) var(--ease-out), transform var(--reveal-duration) var(--ease-out);
}
.reveal-left.is-in {
    opacity: 1;
    transform: none;
}
.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity var(--reveal-duration) var(--ease-out), transform var(--reveal-duration) var(--ease-out);
}
.reveal-right.is-in {
    opacity: 1;
    transform: none;
}
.reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity var(--reveal-duration) var(--ease-out), transform var(--reveal-duration) var(--ease-out);
}
.reveal-scale.is-in {
    opacity: 1;
    transform: none;
}
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.40s; }

.site-header {
    animation: header-in 0.9s var(--ease-out) both;
}
@keyframes header-in {
    from { opacity: 0; transform: translateY(-18px); }
    to { opacity: 1; transform: none; }
}

.brand-logo {
    transition: transform 0.4s var(--ease-out), filter 0.4s ease;
}
.logo:hover .brand-logo {
    transform: scale(1.04);
    filter: brightness(1.05);
}

.hero-slider::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(10,10,10,0.35) 0%, transparent 28%, transparent 70%, rgba(10,10,10,0.25) 100%);
    z-index: 2;
}
.hero-slider .slider-btn,
.hero-slider .slider-dots { z-index: 4; }

.slide.is-active .slide-bg {
    animation: kenburns 7s var(--ease-out) both;
}
@keyframes kenburns {
    from { transform: scale(1.1); }
    to { transform: scale(1); }
}

.welcome-media-card {
    animation: card-glow 5s ease-in-out infinite;
}
@keyframes card-glow {
    0%, 100% { box-shadow: 0 28px 60px rgba(27, 54, 93, 0.28); }
    50% { box-shadow: 0 34px 70px rgba(10, 10, 10, 0.35); }
}

.welcome-media-highlights li {
    animation: line-pulse 2.8s ease-in-out infinite;
}
.welcome-media-highlights li:nth-child(2) { animation-delay: 0.35s; }
.welcome-media-highlights li:nth-child(3) { animation-delay: 0.7s; }
@keyframes line-pulse {
    0%, 100% { opacity: 0.55; transform: scaleX(1); }
    50% { opacity: 1; transform: scaleX(1.02); }
}

.product-card,
.news-card,
.export-card,
.cert-item,
.why-tile {
    transition: transform 0.45s var(--ease-out), box-shadow 0.45s ease, border-color 0.45s ease;
}
.product-card:hover,
.news-card:hover {
    transform: translateY(-10px);
}

.hero-actions a,
.export-actions a {
    position: relative;
    overflow: hidden;
}
.hero-actions a::before,
.export-actions a::before {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
    transform: skewX(-24deg);
    transition: left 0.55s ease;
}
.hero-actions a:hover::before,
.export-actions a:hover::before {
    left: 140%;
}

.export-rail-track::after {
    content: "";
    position: absolute;
    top: -3px;
    left: 0;
    width: 18px;
    height: 8px;
    border-radius: 999px;
    background: var(--black);
    animation: rail-run 4.5s linear infinite;
}
@keyframes rail-run {
    0% { left: 0; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { left: calc(100% - 18px); opacity: 0; }
}

.site-footer {
    position: relative;
    overflow: hidden;
}
.site-footer::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.08);
    top: -160px;
    right: -120px;
    animation: footer-orbit 18s linear infinite;
    pointer-events: none;
}
@keyframes footer-orbit {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.footer-col a {
    display: inline-block;
}
.footer-col a:hover {
    transform: translateX(4px);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .reveal, .reveal-left, .reveal-right, .reveal-scale {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ========== Inner Pages ========== */
.inner-hero {
    position: relative;
    padding: 72px 24px 56px;
    overflow: hidden;
    background: var(--navy);
    color: var(--white);
}
.inner-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% 20%, rgba(255,255,255,0.08), transparent 34%),
        linear-gradient(135deg, var(--navy) 0%, var(--black) 100%);
}
.inner-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1180px;
    margin: 0 auto;
}
.inner-hero .eyebrow {
    color: rgba(255,255,255,0.72);
}
.inner-hero h1 {
    margin: 0 0 14px;
    font-size: clamp(2.1rem, 5vw, 3.4rem);
    line-height: 1.12;
    color: var(--white);
    max-width: 900px;
}
.inner-hero .lede {
    margin: 0;
    max-width: 720px;
    color: rgba(255,255,255,0.78);
    font-size: 1.08rem;
    line-height: 1.65;
}
.inner-section {
    padding: 72px 24px;
    background: var(--white);
}
.inner-section-alt {
    background: #f4f9fd;
}
.inner-wrap {
    max-width: 1180px;
    margin: 0 auto;
}
.inner-head {
    margin-bottom: 32px;
}
.inner-head h2 {
    margin: 0;
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    color: var(--navy);
}
.rich-text {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.75;
}
.rich-text p { margin: 0 0 14px; }

.about-layout {
    display: grid;
    grid-template-columns: 1.35fr 0.9fr;
    gap: 40px;
    align-items: start;
}
.about-copy h2 {
    margin: 0 0 16px;
    color: var(--navy);
    font-size: clamp(1.7rem, 3vw, 2.2rem);
}
.about-aside {
    display: grid;
    gap: 14px;
}
.about-stat-card {
    padding: 22px 20px;
    border-radius: 18px;
    background: var(--white);
    border: 1px solid rgba(27, 54, 93, 0.1);
    box-shadow: 0 12px 28px rgba(10, 10, 10, 0.04);
}
.about-stat-card span {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--navy);
    margin-bottom: 8px;
}
.about-stat-card h3 {
    margin: 0 0 8px;
    color: var(--black);
    font-size: 1.1rem;
}
.about-stat-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
    font-size: 0.94rem;
}
.value-grid,
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.value-card,
.process-card {
    padding: 24px 20px;
    border-radius: 18px;
    background: var(--white);
    border: 1px solid rgba(27, 54, 93, 0.1);
    box-shadow: 0 12px 28px rgba(10, 10, 10, 0.04);
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s ease;
}
.value-card:hover,
.process-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(10, 10, 10, 0.08);
}
.value-card h3,
.process-card h3 {
    margin: 0 0 10px;
    color: var(--navy);
    font-size: 1.1rem;
}
.value-card p,
.process-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
    font-size: 0.94rem;
}
.process-card span {
    display: block;
    margin-bottom: 12px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--navy);
}
.page-products-grid {
    max-width: none;
}
.page-cert-grid {
    max-width: none;
}
.cert-title {
    margin: 12px 0 0;
    text-align: center;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--navy);
}
.product-detail {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 40px;
    align-items: center;
}
.product-detail-media {
    border-radius: 24px;
    overflow: hidden;
    background: #f3f3f3;
    aspect-ratio: 1;
    display: grid;
    place-items: center;
}
.product-detail-media img {
    width: 78%;
    height: auto;
    object-fit: contain;
}
.product-detail-copy h2 {
    margin: 0 0 14px;
    color: var(--navy);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
}
.product-detail-copy > p {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.7;
    font-size: 1.05rem;
}
.inner-checklist {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: grid;
    gap: 10px;
}
.inner-checklist li {
    position: relative;
    padding-left: 28px;
    color: var(--black);
    font-weight: 600;
}
.inner-checklist li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--navy);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 36px;
    align-items: start;
}
.contact-info h2 {
    margin: 0 0 14px;
    color: var(--navy);
    font-size: clamp(1.7rem, 3vw, 2.3rem);
}
.contact-details {
    list-style: none;
    margin: 28px 0 0;
    padding: 0;
    display: grid;
    gap: 16px;
}
.contact-details li {
    display: grid;
    gap: 4px;
}
.contact-details span {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--navy);
}
.contact-details a,
.contact-details p {
    margin: 0;
    color: var(--black);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
}
.contact-details a:hover { color: var(--navy); }
.contact-form-card {
    padding: 28px;
    border-radius: 22px;
    background: var(--white);
    border: 1px solid rgba(27, 54, 93, 0.1);
    box-shadow: 0 18px 40px rgba(10, 10, 10, 0.06);
}
.contact-form .form-row {
    margin-bottom: 14px;
}
.contact-form label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--navy);
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(27, 54, 93, 0.18);
    border-radius: 12px;
    padding: 12px 14px;
    font: inherit;
    color: var(--black);
    background: var(--white);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(27, 54, 93, 0.12);
}
.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.form-error {
    display: block;
    margin-top: 4px;
    color: #8b1e1e;
    font-size: 0.8rem;
}
.form-alert {
    margin-bottom: 16px;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 0.94rem;
    font-weight: 600;
}
.form-alert-success {
    background: rgba(27, 54, 93, 0.08);
    color: var(--navy);
    border: 1px solid rgba(27, 54, 93, 0.15);
}
.blog-detail-wrap {
    max-width: 860px;
}
.blog-article {
    background: var(--white);
    border: 1px solid rgba(27, 54, 93, 0.08);
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 14px 34px rgba(10, 10, 10, 0.04);
}
.blog-excerpt {
    margin: 0 0 18px;
    font-size: 1.1rem;
    line-height: 1.65;
    color: var(--navy);
    font-weight: 600;
}
.blog-pagination {
    margin-top: 28px;
    display: flex;
    justify-content: center;
}
.is-inner .site-header {
    position: sticky;
    top: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.72) 12%, rgba(255, 255, 255, 0.2) 26%, rgba(27, 54, 93, 0) 38%),
        #1b365d;
}

@media (max-width: 960px) {
    .about-layout,
    .product-detail,
    .contact-layout {
        grid-template-columns: 1fr;
    }
    .value-grid,
    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 640px) {
    .inner-hero { padding: 56px 20px 44px; }
    .value-grid,
    .process-grid,
    .form-grid-2 {
        grid-template-columns: 1fr;
    }
    .contact-form-card { padding: 20px; }
}

/* ========== Brand Colorful Polish ========== */
.eyebrow,
.products-label,
.news-tag,
.export-tag,
.why-choose-tag,
.export-card-tag,
.export-logistics-label,
.news-meta,
.news-link,
.cert-title {
    color: var(--blue) !important;
}

.welcome-section {
    background: var(--section-a, #ffffff) !important;
}

.welcome-media-card {
    background: linear-gradient(160deg, #132742 0%, #1b365d 42%, #0073b1 100%) !important;
    box-shadow: 0 28px 60px rgba(0, 115, 177, 0.28) !important;
}

.welcome-orb-a {
    background: rgba(0, 115, 177, 0.28) !important;
}
.welcome-orb-b {
    background: rgba(74, 163, 209, 0.26) !important;
}

.hi-icon {
    background: var(--grad-brand) !important;
    color: #fff !important;
}

.products-section {
    background: var(--section-b, #f4f9fd) !important;
}

.product-card {
    border: 1px solid rgba(0, 115, 177, 0.10);
    box-shadow: 0 14px 32px rgba(27, 54, 93, 0.06);
}
.product-card:hover {
    border-color: rgba(0, 115, 177, 0.28);
    box-shadow: 0 22px 40px rgba(0, 115, 177, 0.14);
}
.product-btn,
.explore-btn {
    background: var(--grad-brand) !important;
    color: #fff !important;
    border: 0 !important;
}
.product-btn:hover,
.explore-btn:hover {
    filter: brightness(1.06);
    box-shadow: 0 12px 24px rgba(0, 115, 177, 0.25);
}

.export-section {
    background: var(--section-a, #ffffff) !important;
}
.export-logistics {
    background:
        radial-gradient(circle at 100% 0%, rgba(0, 115, 177, 0.14), transparent 42%),
        linear-gradient(160deg, #f4f9fd 0%, #ffffff 55%, #eaf4fb 100%) !important;
    border-color: rgba(0, 115, 177, 0.14) !important;
}
.export-card-icon,
.export-card[data-mode="road"] .export-card-icon,
.export-card[data-mode="rail"] .export-card-icon,
.export-card[data-mode="sea"] .export-card-icon,
.export-card[data-mode="air"] .export-card-icon {
    background: var(--grad-brand) !important;
}
.export-card[data-mode="rail"] .export-card-icon {
    background: linear-gradient(145deg, #1b365d, #0a5f9e) !important;
}
.export-card[data-mode="sea"] .export-card-icon {
    background: linear-gradient(145deg, #0073b1, #4aa3d1) !important;
}
.export-card[data-mode="air"] .export-card-icon {
    background: linear-gradient(145deg, #4aa3d1, #1b365d) !important;
}
.export-checks li::before {
    background: rgba(0, 115, 177, 0.14) !important;
    color: var(--blue) !important;
}
.export-rail-track::before {
    background: linear-gradient(90deg, transparent, #0073b1 12%, #1b365d 50%, #4aa3d1 88%, transparent) !important;
    opacity: 0.55 !important;
}
.export-rail-track span {
    border-color: var(--blue) !important;
    box-shadow: 0 0 0 4px rgba(0, 115, 177, 0.14) !important;
}

.news-section {
    background: var(--section-b, #f4f9fd) !important;
}
.news-card:hover {
    border-color: rgba(0, 115, 177, 0.22);
    box-shadow: 0 22px 42px rgba(0, 115, 177, 0.12);
}

.why-choose-section {
    background: var(--section-b, #f4f9fd) !important;
}
.why-num {
    color: #fff !important;
}

.site-footer {
    background:
        radial-gradient(circle at 12% 0%, rgba(0, 115, 177, 0.35), transparent 34%),
        linear-gradient(180deg, #1b365d 0%, #0c1c33 100%) !important;
}
.footer-cta {
    background: linear-gradient(90deg, #0073b1, #4aa3d1) !important;
    color: #fff !important;
}
.footer-cta:hover {
    background: linear-gradient(90deg, #0a86c7, #0073b1) !important;
    color: #fff !important;
    transform: translateY(-3px);
}
.footer-social a:hover {
    background: var(--blue) !important;
    color: #fff !important;
}

.inner-hero-bg {
    background:
        radial-gradient(circle at 85% 20%, rgba(0, 115, 177, 0.35), transparent 34%),
        var(--grad-hero) !important;
}
.inner-section-alt {
    background:
        radial-gradient(circle at 80% 0%, rgba(0, 115, 177, 0.08), transparent 30%),
        #f4f9fd !important;
}
.value-card,
.process-card,
.about-stat-card,
.contact-form-card,
.blog-article {
    border-color: rgba(0, 115, 177, 0.12) !important;
}
.value-card:hover,
.process-card:hover,
.about-stat-card:hover {
    border-color: rgba(0, 115, 177, 0.28);
    box-shadow: 0 18px 36px rgba(0, 115, 177, 0.12);
}
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--blue) !important;
    box-shadow: 0 0 0 3px rgba(0, 115, 177, 0.14) !important;
}

.main-nav > a:hover,
.main-nav > a.active {
    color: #9ed0eb !important;
}
.main-nav > a::after {
    background: var(--sky) !important;
}

.slider-btn:hover {
    background: var(--blue) !important;
    border-color: var(--blue) !important;
    color: #fff !important;
}
.dot.is-active {
    background: linear-gradient(90deg, #4aa3d1, #ffffff) !important;
}

/* ========== Section Alternating Backgrounds (White ↔ Ice) ========== */
:root {
    --section-a: #ffffff;
    --section-b: #f4f9fd;
}

.welcome-section,
.certificates-section,
.export-section,
.inner-section {
    background: var(--section-a) !important;
}

.products-section,
.why-choose-section,
.news-section,
.inner-section-alt {
    background: var(--section-b) !important;
}
.products-section {
    background: #1b365d !important;
}

/* Keep special bands intentional */
.hero-slider,
.video-section {
    /* image / media sections stay as-is */
}

.site-footer {
    background:
        radial-gradient(circle at 12% 0%, rgba(0, 115, 177, 0.28), transparent 34%),
        linear-gradient(180deg, #1b365d 0%, #0c1c33 100%) !important;
}

/* Soft cards stay readable on ice panels */
.products-section .product-card,
.why-choose-section .why-tile,
.news-section .news-card,
.export-section .export-logistics,
.export-section .export-card {
    background: #ffffff;
}

.certificates-section {
    border-top: 1px solid rgba(0, 115, 177, 0.06);
    border-bottom: 1px solid rgba(0, 115, 177, 0.06);
}

.export-section {
    border-top: 0 !important;
}

.why-choose-section,
.products-section,
.news-section {
    position: relative;
}

/* Remove conflicting multi-gradient section fills from brand polish */
.welcome-section::before,
.products-section::before,
.why-choose-section::before,
.news-section::before {
    content: none !important;
}

/* ========== Product Overlap Cards (reference style) ========== */
.products-section {
    background: #1b365d !important;
}
.products-section::before,
.products-section::after {
    content: none !important;
    display: none !important;
}
.products-label {
    color: #9ed0eb !important;
}
.products-label-icon {
    background: linear-gradient(135deg, #4aa3d1, #0073b1) !important;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.12) !important;
}
.products-head h2 {
    color: #ffffff !important;
}
.products-head h2 em {
    color: #9ed0eb !important;
}
.products-lead {
    color: rgba(255, 255, 255, 0.78) !important;
}
.products-grid,
.page-products-grid {
    max-width: 920px !important;
    grid-template-columns: 1fr !important;
    gap: 56px !important;
    padding: 28px 0 8px !important;
}
.product-card {
    display: block !important;
    margin-left: 90px !important;
    padding: 36px 40px 36px 110px !important;
    text-align: left !important;
    border-radius: 0 !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    background: #ffffff !important;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18) !important;
}
.product-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 26px 50px rgba(0, 0, 0, 0.24) !important;
}
.product-photo {
    top: 50% !important;
    left: -90px !important;
    transform: translateY(-50%) !important;
    width: 180px !important;
    height: 180px !important;
    padding: 0 !important;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.28) !important;
    overflow: hidden !important;
    z-index: 2;
}
.product-photo img {
    object-fit: cover !important;
    background: #f3f7fb;
}
.product-body {
    min-width: 0;
}
.product-card h3 {
    margin: 0 0 12px !important;
    font-size: clamp(1.35rem, 2.5vw, 1.75rem) !important;
    color: #1b365d !important;
    font-weight: 700 !important;
    text-align: left !important;
}
.product-card p {
    margin: 0 0 22px !important;
    min-height: 0 !important;
    max-width: 520px;
    color: #31455f !important;
    font-size: 1rem !important;
    line-height: 1.65 !important;
    text-align: left !important;
}
.product-btn {
    min-width: 0 !important;
    padding: 12px 22px !important;
    border-radius: 2px !important;
    background: #1b365d !important;
    letter-spacing: 0.08em !important;
    box-shadow: 0 10px 22px rgba(27, 54, 93, 0.28);
}
.product-btn:hover {
    background: #0073b1 !important;
    filter: none !important;
    transform: translateY(-2px);
}
.explore-btn {
    border-radius: 2px !important;
    background: #ffffff !important;
    color: #1b365d !important;
}
.explore-btn:hover {
    background: #eaf4fb !important;
    color: #1b365d !important;
}

/* Inner products page: navy band for the list */
.inner-section .products-grid {
    max-width: 920px;
}
.page-products-wrap {
    background: #1b365d;
    padding: 48px 28px;
    border-radius: 0;
}

@media (max-width: 1100px) {
    .products-grid,
    .page-products-grid {
        max-width: 720px !important;
        gap: 52px !important;
    }
}
@media (max-width: 640px) {
    .products-grid,
    .page-products-grid {
        max-width: 100% !important;
        gap: 42px !important;
    }
    .product-card {
        margin-left: 0 !important;
        padding: 120px 22px 28px !important;
        text-align: center !important;
    }
    .product-photo {
        left: 50% !important;
        top: -36px !important;
        transform: translateX(-50%) !important;
        width: 140px !important;
        height: 140px !important;
    }
    .product-card h3,
    .product-card p {
        text-align: center !important;
    }
    .product-card p {
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .product-btn {
        margin: 0 auto;
    }
}

/* ========== Modern Diagonal Footer ========== */
.site-footer.footer-modern {
    position: relative;
    margin-top: 0;
    background: #ffffff !important;
    color: #31455f;
    overflow: visible;
}
.site-footer.footer-modern::before {
    display: none !important;
}

.footer-diagonal {
    position: relative;
    height: 140px;
    margin-bottom: -1px;
}
.footer-diagonal-shape {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1b365d 0%, #0073b1 100%);
    clip-path: polygon(0 0, 100% 0, 100% 28%, 0 100%);
}

.footer-main {
    max-width: 1180px;
    margin: 0 auto;
    padding: 28px 24px 18px;
}
.footer-modern .footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.85fr 0.95fr 1.25fr;
    gap: 36px;
    align-items: start;
}
.footer-modern .footer-brand h3 {
    margin: 0 0 12px;
    font-size: clamp(1.25rem, 2.4vw, 1.55rem);
    color: #1b365d;
    line-height: 1.3;
}
.footer-modern .footer-brand p {
    margin: 0 0 18px;
    max-width: 340px;
    color: #5b6b7c;
    line-height: 1.65;
    font-size: 0.95rem;
    background: none;
}
.footer-follow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px 10px 16px;
    border-radius: 999px;
    background: #1b365d;
    color: #fff;
    box-shadow: 0 12px 24px rgba(27, 54, 93, 0.2);
}
.footer-follow span {
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    white-space: nowrap;
}
.footer-follow-icons {
    display: inline-flex;
    gap: 8px;
}
.footer-follow-icons a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,0.14);
    color: #fff !important;
    text-decoration: none;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: lowercase;
    transition: background 0.25s ease, transform 0.25s ease;
}
.footer-follow-icons a:hover {
    background: #0073b1;
    transform: translateY(-2px);
}

.footer-modern .footer-col h4 {
    margin: 0 0 16px;
    color: #0073b1 !important;
    font-size: 1.05rem;
    font-weight: 700;
}
.footer-modern .footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}
.footer-modern .footer-col a,
.footer-modern .footer-col p {
    margin: 0;
    color: #1f2f42 !important;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
    transition: color 0.2s ease, transform 0.2s ease;
}
.footer-modern .footer-col a:hover {
    color: #0073b1 !important;
    transform: translateX(3px);
}

.footer-contact-item {
    display: grid !important;
    grid-template-columns: 28px 1fr;
    gap: 10px;
    align-items: start;
}
.footer-ico {
    width: 24px;
    height: 24px;
    color: #1b365d;
    display: grid;
    place-items: center;
}
.footer-ico svg {
    width: 20px;
    height: 20px;
}

.footer-modern .footer-bottom {
    max-width: none;
    margin: 0;
    padding: 16px 24px 22px;
    border-top: 1px solid rgba(27, 54, 93, 0.12);
    display: block;
    text-align: center;
    color: #31455f !important;
    font-size: 0.88rem;
}
.footer-modern .footer-bottom p {
    margin: 0;
}
.footer-modern .footer-bottom-links {
    display: none;
}

.footer-top-btn {
    position: absolute;
    right: 22px;
    bottom: 78px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #0073b1;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(0, 115, 177, 0.3);
    transition: transform 0.25s ease, background 0.25s ease;
    z-index: 5;
}
.footer-top-btn:hover {
    background: #1b365d;
    transform: translateY(-3px);
    color: #fff;
}

@media (max-width: 980px) {
    .footer-modern .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 640px) {
    .footer-diagonal {
        height: 110px;
    }
    .footer-modern .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .footer-top-btn {
        right: 16px;
        bottom: 70px;
    }
}
.footer-follow-icons a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,0.16);
    color: #fff !important;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.25s ease;
}
.footer-follow-icons a svg {
    width: 15px;
    height: 15px;
    display: block;
}
.footer-follow-icons a:hover {
    background: #0073b1;
    transform: translateY(-2px);
}
.footer-link-list a {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
}
.footer-link-ico {
    width: 16px;
    height: 16px;
    color: #0073b1;
    flex-shrink: 0;
    display: inline-grid;
    place-items: center;
}
.footer-link-ico svg {
    width: 14px;
    height: 14px;
}
.footer-ico {
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    background: #1b365d !important;
    color: #ffffff !important;
    display: grid !important;
    place-items: center !important;
    flex-shrink: 0;
}
.footer-ico svg {
    width: 16px !important;
    height: 16px !important;
    color: #ffffff !important;
    stroke: #ffffff !important;
}
.footer-contact-item {
    grid-template-columns: 32px 1fr !important;
    gap: 12px !important;
    align-items: center !important;
}
.footer-link-ico {
    color: #0073b1 !important;
}
.footer-link-ico svg {
    stroke: #0073b1 !important;
}
.footer-top-btn svg {
    width: 20px;
    height: 20px;
    display: block;
}

/* WhatsApp floating button */
.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 24px;
    z-index: 120;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #25d366;
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.whatsapp-float svg {
    width: 30px;
    height: 30px;
    display: block;
}
.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.04);
    background: #1ebe57;
    color: #ffffff;
    box-shadow: 0 16px 32px rgba(37, 211, 102, 0.5);
}
.footer-modern .footer-top-btn {
    bottom: 96px;
    right: 28px;
}
@media (max-width: 640px) {
    .whatsapp-float {
        right: 16px;
        bottom: 18px;
        width: 52px;
        height: 52px;
    }
    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
    .footer-modern .footer-top-btn {
        bottom: 84px;
        right: 20px;
    }
}

/* ========== Products Page Polish ========== */
.products-page-hero .inner-hero-inner {
    max-width: 820px;
}
.products-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}
.products-hero-meta span {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}
.products-intro-band {
    padding-top: 48px;
    padding-bottom: 48px;
}
.products-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 36px;
    align-items: start;
}
.products-intro-points {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
}
.products-intro-points li {
    padding: 16px 18px;
    border-radius: 16px;
    background: #f4f9fd;
    border: 1px solid rgba(0, 115, 177, 0.12);
}
.products-intro-points strong {
    display: block;
    margin-bottom: 4px;
    color: #1b365d;
    font-size: 1rem;
}
.products-intro-points p {
    margin: 0;
    color: rgba(19, 39, 66, 0.68);
    font-size: 0.92rem;
    line-height: 1.5;
}
.products-page-list {
    padding-top: 64px !important;
    padding-bottom: 70px !important;
}
.products-list-head {
    max-width: 920px;
    margin: 0 auto 36px;
    text-align: center;
}
.products-list-head h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.6rem, 3.2vw, 2.2rem);
}
.products-page-list .product-card {
    overflow: visible;
}
.product-index {
    position: absolute;
    top: 16px;
    right: 18px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: rgba(27, 54, 93, 0.35);
}
.products-page-list .product-photo {
    background:
        radial-gradient(circle at 50% 45%, rgba(255,255,255,0.55), transparent 60%),
        linear-gradient(145deg, #fff7e8, #f3d9a4);
    box-shadow:
        0 0 0 8px rgba(255,255,255,0.35),
        0 16px 36px rgba(0, 0, 0, 0.28);
}
.product-photo-ring {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.35);
    pointer-events: none;
}
.products-page-list .product-photo img {
    object-fit: contain;
    padding: 18px;
    background: transparent;
}
.product-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}
.product-link {
    color: #0073b1;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
}
.product-link:hover {
    color: #1b365d;
}
.products-cta-band {
    max-width: 920px;
    margin: 48px auto 0;
    padding: 28px 30px;
    border-radius: 18px;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: center;
    background: linear-gradient(135deg, rgba(255,255,255,0.12), rgba(0,115,177,0.28));
    border: 1px solid rgba(255,255,255,0.16);
}
.products-cta-band h3 {
    margin: 0 0 6px;
    color: #fff;
    font-size: 1.25rem;
}
.products-cta-band p {
    margin: 0;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
    font-size: 0.95rem;
}
.btn-ghost-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.45);
    transition: background 0.25s ease, transform 0.25s ease;
}
.btn-ghost-light:hover {
    background: rgba(255,255,255,0.12);
    color: #fff;
    transform: translateY(-2px);
}
@media (max-width: 900px) {
    .products-intro-grid,
    .products-cta-band {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: flex-start;
    }
}
@media (max-width: 640px) {
    .products-page-list .product-card {
        text-align: center;
    }
    .product-actions {
        justify-content: center;
    }
    .product-index {
        left: 18px;
        right: auto;
    }
}

/* ========== Product Square Image Refresh ========== */
.product-card {
    border-radius: 18px !important;
}
.product-photo {
    border-radius: 18px !important;
    overflow: hidden !important;
    background: #ffffff !important;
    box-shadow:
        0 0 0 6px rgba(255, 255, 255, 0.35),
        0 18px 36px rgba(0, 0, 0, 0.28) !important;
}
.product-photo img {
    border-radius: 18px !important;
    object-fit: cover !important;
    padding: 0 !important;
    width: 100% !important;
    height: 100% !important;
}
.product-photo-ring {
    border-radius: 22px !important;
    inset: -8px !important;
    border: 1px solid rgba(255, 255, 255, 0.45) !important;
}
.products-page-list .product-photo {
    background: #ffffff !important;
    box-shadow:
        0 0 0 6px rgba(255, 255, 255, 0.28),
        0 18px 40px rgba(0, 0, 0, 0.3) !important;
}
.products-page-list .product-photo img {
    object-fit: cover !important;
    padding: 0 !important;
}
.product-card:hover .product-photo {
    transform: translateY(-50%) scale(1.04) !important;
}
@media (max-width: 640px) {
    .product-card:hover .product-photo {
        transform: translateX(-50%) scale(1.04) !important;
    }
    .product-photo {
        border-radius: 16px !important;
    }
    .product-photo img {
        border-radius: 16px !important;
    }
}

.site-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    min-height: 88px;
    position: relative;
}
.site-header {
    display: block;
}

/* Shared content container alignment (not fluid) */
.welcome-grid,
.products-head,
.products-grid,
.products-list-head,
.certificates-head,
.certificates-grid,
.why-choose-head,
.why-bento,
.export-inner,
.news-head,
.news-grid,
.inner-wrap,
.inner-hero-inner,
.page-hero,
.page-body,
.footer-main.container,
.footer-bottom.container {
    width: 100%;
    max-width: var(--container) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: var(--container-pad);
    padding-right: var(--container-pad);
    box-sizing: border-box;
}
.products-grid,
.page-products-grid,
.why-bento,
.export-logistics,
.news-grid,
.certificates-grid {
    padding-left: var(--container-pad);
    padding-right: var(--container-pad);
}
/* Container mobile nav alignment */
@media (max-width: 1100px) {
    .site-header-inner .main-nav {
        left: 0 !important;
        right: 0 !important;
        top: calc(100% + 8px) !important;
    }
}
.site-header {
    display: block !important;
}
