:root {
    --primary: #0a4fa8;
    --secondary: #1d78d8;
    --accent: #3fa9f5;
    --navy: #013fd2;
    --ink: #1f2937;
    --muted: #64748b;
    --surface: #fff;
    --surface-blue: #f5faff;
    --line: #ddebfa;
    --brand-gradient: linear-gradient(135deg, #0a4fa8 0%, #1d78d8 58%, #3fa9f5 100%);
    --shadow-xs: 0 2px 10px rgba(7, 55, 120, .06);
    --shadow-sm: 0 8px 30px rgba(0, 0, 0, .08);
    --shadow-md: 0 18px 50px rgba(10, 79, 168, .12);
    --shadow-lg: 0 28px 80px rgba(3, 38, 83, .18);
    --ease: cubic-bezier(.2, .8, .2, 1);
    --header-height: 90px;
    --container: 1320px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    margin: 0;
    color: var(--ink);
    background: #fff;
    font-family: "Be Vietnam Pro", Inter, system-ui, sans-serif;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

button, input, textarea {
    font: inherit;
}

button, a {
    -webkit-tap-highlight-color: transparent;
}

button {
    border: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

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

p, h1, h2, h3 {
    margin-top: 0;
}

::selection {
    color: #fff;
    background: var(--primary);
}

.svg-sprite {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

.icon {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.container {
    width: min(100% - 64px, var(--container));
    margin-inline: auto; }

.section {
    padding: 110px 0;
}

.section-anchor {
    scroll-margin-top: var(--header-height);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 999;
    top: 12px;
    left: 12px;
    padding: 12px 18px;
    color: #fff;
    background: var(--primary);
    border-radius: 8px;
    transform: translateY(-150%);
    transition: transform .2s;
}

.skip-link:focus {
    transform: translateY(0);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}

[data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--secondary);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 30px;
    height: 2px;
    content: "";
    background: var(--brand-gradient);
    border-radius: 99px;
}

.eyebrow-light {
    color: #a9ddff;
}

.eyebrow-light::before {
    background: #8bd8ff;
}

.section-heading h2 {
    margin-bottom: 22px;
    color: var(--navy);
    font-size: clamp(32px, 3.2vw, 44px);
    line-height: 1.15;
    letter-spacing: -.035em;
    text-transform: uppercase;
}

.section-heading p:last-child {
    max-width: 680px;
    margin-bottom: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8;
}

.section-heading.centered {
    margin-bottom: 62px;
    text-align: center;
}

.section-heading.centered .eyebrow {
    justify-content: center;
}

.section-heading.centered h2 {
    margin-bottom: 0;
}

.section-top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 42px;
}

.section-top .section-heading h2 {
    margin-bottom: 0;
}

.button {
    position: relative;
    isolation: isolate;
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 14px;
    overflow: hidden;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), background-color .3s;
}

.button::after {
    position: absolute;
    z-index: -1;
    inset: 0;
    content: "";
    background: linear-gradient(110deg, transparent 15%, rgba(255,255,255,.22) 50%, transparent 85%);
    transform: translateX(-120%);
    transition: transform .6s var(--ease);
}

.button:hover::after {
    transform: translateX(120%);
}

.button:hover {
    transform: translateY(-2px);
}

.button:focus-visible, .round-button:focus-visible, .language-trigger:focus-visible, .menu-toggle:focus-visible, input:focus-visible, textarea:focus-visible, a:focus-visible {
    outline: 3px solid rgba(63, 169, 245, .34);
    outline-offset: 3px;
}

.button-primary {
    color: #fff;
    background: var(--brand-gradient);
    box-shadow: 0 12px 30px rgba(10, 79, 168, .25);
}

.button-primary:hover {
    box-shadow: 0 16px 38px rgba(10, 79, 168, .36);
}

.button-outline {
    color: var(--primary);
    border: 1px solid #cfe2f8;
    background: #fff;
}

.button-outline:hover {
    color: #fff;
    background: var(--primary);
    box-shadow: var(--shadow-md);
}

.button .icon {
    width: 20px;
}

.ripple-dot {
    position: absolute;
    z-index: -1;
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,.5);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0);
    animation: ripple .55s ease-out;
}

@keyframes ripple {
    to {
        opacity: 0;
        transform: translate(-50%, -50%) scale(16);
    }
}

/* Header */
.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    height: var(--header-height);
    background: rgba(255,255,255,.96);
    border-top: 3px solid var(--primary);
    border-bottom: 1px solid rgba(221,235,250,.55);
    box-shadow: 0 2px 10px rgba(0,0,0,.05);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: grid;
    height: 100%;
    grid-template-columns: 285px 1fr 132px;
    align-items: center;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: max-content;
    color: var(--primary);
}

.brand-mark {
    width: 48px;
    height: 48px;
    fill: none;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.brand-logo {
    width: 60px;
    height: 55px;
    object-fit: contain;
}

.brand-copy {
    display: flex;
    flex-direction: column;
}

.brand-copy strong {
    font-size: 21px;
    font-weight: 800;
    letter-spacing: -.025em;
}

.brand-copy small {
    margin-top: 3px;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .02em;
}

.main-nav {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: clamp(20px, 2.1vw, 40px);
    height: 100%;
}

.nav-link {
    position: relative;
    display: flex;
    align-items: center;
    color: #25324a;
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    transition: color .3s;
}

.nav-link::after {
    position: absolute;
    right: 50%;
    bottom: 20px;
    left: 50%;
    height: 2px;
    content: "";
    background: var(--brand-gradient);
    border-radius: 9px;
    transition: inset .3s var(--ease);
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after, .nav-link.active::after {
    right: 8px;
    left: 8px;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.language {
    position: relative;
}

.language-trigger {
    display: flex;
    min-width: 91px;
    height: 46px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--navy);
    background: #fff;
    border: 1px solid #cfe0f3;
    border-radius: 9px;
    cursor: pointer;
    transition: border-color .3s, box-shadow .3s;
}

.language-trigger:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-xs);
}

.language-trigger .icon {
    width: 16px;
    transition: transform .3s;
}

.language.open .language-trigger .icon {
    transform: rotate(180deg);
}

.flag {
    display: grid;
    width: 23px;
    height: 16px;
    place-items: center;
    font-size: 9px;
    font-weight: 700;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,.15);
}

.flag-vn {
    color: #ffde42;
    background: #f22525;
}

.flag-en {
    color: #fff;
    background: #1c58a9;
}

.language-code {
    font-size: 13px;
    font-weight: 700;
}

.language-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 170px;
    padding: 7px;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
    transition: .25s var(--ease);
}

.language.open .language-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.language-option {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 10px;
    padding: 10px;
    color: var(--ink);
    background: transparent;
    border-radius: 8px;
    font-size: 13px;
    text-align: left;
    cursor: pointer;
}

.language-option:hover, .language-option.selected {
    color: var(--primary);
    background: var(--surface-blue);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    place-items: center;
    color: var(--primary);
    background: var(--surface-blue);
    border-radius: 10px;
}

.icon-close {
    display: none;
}

/* Hero */
.hero {
    position: relative;
    min-height: 666px;
    overflow: hidden;
    background: #dff1fc;
}

.hero-media {
    position: absolute;
    inset: 0;
    transform: scale(1.03);
    animation: heroZoom 1.4s var(--ease) forwards;
    will-change: transform;
    background-position: initial;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    object-fit: cover;
    object-position: 61% center;
    transition: opacity .65s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-wash {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,.48) 2%, rgba(255,255,255,.88) 36%, rgba(255,255,255,.15) 50%, rgba(255,255,255,0) 76%), linear-gradient(0deg, rgba(6,53,116,.06), transparent 45%);
}

.hero::after {
    position: absolute;
    bottom: -76px;
    left: -10%;
    width: 120%;
    height: 118px;
    content: "";
    background: #fff;
    border-radius: 62% 38% 0 0 / 100% 100% 0 0;
    transform: rotate(-1deg);
    transform-origin: center bottom;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 666px;
    align-items: center;
}

.hero-content {
    width: 650px;
    padding: 26px 0 54px;
}

.hero-content .eyebrow {
    margin-bottom: 18px;
    font-size: 24px;
}

.hero h1 {
    margin-bottom: 18px;
    color: var(--primary);
    font-size: clamp(52px, 5.1vw, 72px);
    font-weight: 800;
    line-height: 1.01;
    letter-spacing: -.055em;
    text-transform: uppercase;
}

.hero h1 span {
    color: var(--navy);
}

.hero-tagline {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 29px;
    color: var(--navy);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.hero-tagline i {
    width: 5px;
    height: 5px;
    background: var(--accent);
    border-radius: 50%;
}

.hero-features {
    display: grid;
    max-width: 590px;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 30px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--navy);
    font-size: 14px;
    font-weight: 650;
    line-height: 1.45;
}

.feature-icon {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    place-items: center;
    color: var(--primary);
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(29,120,216,.3);
    border-radius: 50%;
    box-shadow: 0 8px 22px rgba(10,79,168,.08);
    backdrop-filter: blur(8px);
}

.feature-icon .icon {
    width: 25px;
}

.hero-pagination {
    position: absolute;
    z-index: 3;
    bottom: 72px;
    left: 50%;
    display: flex;
    align-items: center;
    gap: 8px;
    transform: translateX(-50%);
}

.hero-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    background: rgba(255,255,255,.85);
    border-radius: 99px;
    box-shadow: 0 1px 8px rgba(6,53,116,.2);
    cursor: pointer;
    transition: width .3s, background .3s;
}

.hero-dot.active {
    width: 30px;
    background: var(--primary);
}

.hero-count {
    margin-left: 8px;
    color: var(--navy);
    font-size: 11px;
    letter-spacing: .08em;
}

.hero-count strong {
    font-size: 14px;
}

.hero-scroll {
    position: absolute;
    z-index: 3;
    bottom: 20px;
    left: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--navy);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    transform: rotate(-90deg);
    transform-origin: left center;
}

.hero-scroll span {
    width: 32px;
    height: 1px;
    background: var(--primary);
}

@keyframes heroZoom {
    to {
        transform: scale(1);
    }
}

/* About */
.about {
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
    align-items: center;
    gap: clamp(60px, 7vw, 110px);
}

.about-visual {
    position: relative;
    padding: 0 0 38px 26px;
}

.about-visual::before {
    position: absolute;
    z-index: -1;
    top: -26px;
    right: 26px;
    bottom: 68px;
    left: 0;
    content: "";
    border: 1px solid #badbf7;
    border-radius: 28px;
}

.about-image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border-radius: 28px;
    box-shadow: var(--shadow-lg);
}

.about-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease);
}

.about-image-wrap:hover img {
    transform: scale(1.025);
}

.image-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(255,255,255,.18), transparent 42%);
    pointer-events: none;
}

.eu-badge {
    position: absolute;
    right: -28px;
    bottom: 8px;
    display: flex;
    width: 140px;
    height: 96px;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    color: #fff;
    background: var(--brand-gradient);
    border: 5px solid #fff;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.eu-badge span {
    margin-bottom: 4px;
    font-size: 10px;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.eu-badge strong {
    font-size: 23px;
}

.image-caption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 16px 145px 0 0;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.image-caption span {
    color: var(--primary);
}

.about-content .section-heading {
    margin-bottom: 34px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
}

.stat-card {
    display: flex;
    min-height: 118px;
    align-items: center;
    gap: 18px;
    padding: 22px;
    background: #fff;
    border: 1px solid #e4effb;
    border-radius: 18px;
    box-shadow: var(--shadow-xs);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}

.stat-card:hover {
    border-color: #c7ddf5;
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.stat-card > .icon {
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    color: var(--primary);
}

.stat-card div {
    display: flex;
    flex-direction: column;
}

.stat-card strong {
    margin-bottom: 4px;
    color: var(--primary);
    font-size: clamp(21px, 2vw, 28px);
    letter-spacing: -.03em;
}

.stat-card span {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

/* Products */
.products {
    position: relative;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 14px;
    background: #fff;
}

.products::after {
    display: none;
}

.carousel-controls {
    display: flex;
    gap: 10px;
}

.round-button {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    color: var(--primary);
    background: #fff;
    border: 1px solid #dceafb;
    border-radius: 50%;
    cursor: pointer;
    transition: .3s var(--ease);
}

.round-button:hover {
    color: #fff;
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.round-button:disabled {
    opacity: .38;
    pointer-events: none;
}

.icon-reverse {
    transform: rotate(180deg);
}

.product-track {
    display: grid;
    grid-auto-columns: calc((100% - 72px) / 4);
    grid-auto-flow: column;
    gap: 24px;
    overflow-x: auto;
    padding: 5px 4px 28px;
    scrollbar-width: none;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
}

.product-track::-webkit-scrollbar {
    display: none;
}

.product-card {
    overflow: hidden;
    min-width: 0;
    background: #fff;
    border: 1px solid #e5effa;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    scroll-snap-align: start;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.product-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-8px) scale(1.01);
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background-image: url("../images/products-atlas.webp");
    background-repeat: no-repeat;
    background-size: 200% 200%;
    transition: background-size .7s var(--ease);
}

.product-card:hover .product-image {
    background-size: 208% 208%;
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    max-width: none;
    height: 200%;
    object-fit: fill;
    transition: transform .7s var(--ease);
}

.product-image-2 img,
.product-image-4 img {
    right: 0;
    left: auto;
}

.product-image-3 img,
.product-image-4 img {
    top: auto;
    bottom: 0;
}

.product-card:hover .product-image img {
    transform: scale(1.035);
}

.product-image span {
    position: absolute;
    top: 14px;
    right: 14px;
    display: grid;
    width: 35px;
    height: 35px;
    place-items: center;
    color: var(--navy);
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(255,255,255,.65);
    border-radius: 50%;
    font-size: 10px;
    font-weight: 800;
    backdrop-filter: blur(9px);
}

.product-content {
    padding: 23px 22px 25px;
}

.product-content > p {
    margin-bottom: 7px;
    color: var(--secondary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.product-content h3 {
    margin-bottom: 15px;
    color: var(--navy);
    font-size: 18px;
    letter-spacing: -.02em;
}

.product-description {
    min-height: 49px;
    margin: 0 0 18px;
    color: var(--muted) !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.65;
    letter-spacing: 0 !important;
    text-transform: none !important;
}

.product-content a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 750;
}

.product-content a .icon {
    width: 17px;
    transition: transform .3s;
}

.product-content a:hover .icon {
    transform: translateX(5px);
}

.carousel-progress {
    display: none;
}

.carousel-progress span {
    display: block;
    width: 25%;
    height: 100%;
    background: var(--brand-gradient);
    border-radius: 999px;
    transition: width .3s, transform .3s;
    transform-origin: left;
}

/* Process */
.process {
    position: relative;
    overflow: hidden;
    padding-top: 24px;
    padding-bottom: 58px;
    background: #eef8ff url("../images/process-water-v2.webp") center / 100% 100% no-repeat;
}

.process::before, .process::after {
    display: none;
}

.water-orbit {
    display: none;
}

.water-orbit::before, .water-orbit::after {
    position: absolute;
    content: "";
    border: inherit;
    border-radius: inherit;
}

.water-orbit::before {
    inset: 28px;
}

.water-orbit::after {
    inset: 64px;
}

.water-orbit-a {
    top: -120px;
    left: -100px;
}

.water-orbit-b {
    right: -90px;
    bottom: -140px;
}

.process .section-heading.centered {
    margin-bottom: 30px;
}

.timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.timeline-line {
    position: absolute;
    z-index: 0;
    top: 47px;
    right: 8%;
    left: 8%;
    height: 2px;
    background: linear-gradient(90deg, rgba(10,79,168,.15), #1d78d8 15%, #3fa9f5 85%, rgba(10,79,168,.15));
}

.timeline-step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 10px;
    text-align: center;
}

.timeline-step:nth-child(3) {
    transition-delay: 90ms;
}

.timeline-step:nth-child(4) {
    transition-delay: 180ms;
}

.timeline-step:nth-child(5) {
    transition-delay: 270ms;
}

.timeline-step:nth-child(6) {
    transition-delay: 360ms;
}

.timeline-step:nth-child(7) {
    transition-delay: 450ms;
}

.timeline-icon {
    display: grid;
    width: 94px;
    height: 94px;
    place-items: center;
    color: #fff;
    background: var(--brand-gradient);
    border: 7px solid rgba(255,255,255,.92);
    border-radius: 50%;
    box-shadow: 0 12px 30px rgba(10,79,168,.2);
    transition: transform .3s var(--ease);
}

.timeline-step:hover .timeline-icon {
    transform: translateY(-5px) rotate(-3deg);
}

.timeline-icon .icon {
    width: 36px;
    height: 36px;
}

.step-number {
    z-index: 1;
    display: grid;
    min-width: 36px;
    height: 24px;
    place-items: center;
    margin: -9px 0 13px;
    color: var(--primary);
    background: #fff;
    border: 1px solid #cfe3f7;
    border-radius: 999px;
    box-shadow: var(--shadow-xs);
    font-size: 10px;
    font-weight: 800;
}

.timeline-step h3 {
    margin: 0;
    color: var(--navy);
    font-size: 15px;
    line-height: 1.55;
}

/* Market */
.market {
    padding: 78px 0;
}

.market-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(420px, .9fr);
    align-items: center;
    gap: clamp(48px, 6vw, 80px);
}

.market-map-wrap {
    position: relative;
}

.map-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--navy);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.map-label span {
    color: var(--secondary);
}

.world-map {
    width: 100%;
    margin-top: 25px;
    color: #8dc9f8;
}

.continents path {
    fill: url(#dots);
    stroke: rgba(29,120,216,.16);
    stroke-width: 1;
}

.route-lines path {
    fill: none;
    stroke: rgba(29,120,216,.32);
    stroke-width: 1.5;
    stroke-dasharray: 6 7;
}

.map-pins g {
    filter: url(#mapGlow);
    transform-box: fill-box;
    transform-origin: center bottom;
    animation: mapPinFloat 2.8s ease-in-out infinite;
}

.map-pins g:nth-child(2) {
    animation-delay: .45s;
}

.map-pins g:nth-child(3) {
    animation-delay: .9s;
}

.map-pins g:nth-child(4) {
    animation-delay: 1.35s;
}

.map-pins path {
    fill: var(--primary);
    stroke: #fff;
    stroke-width: 2;
}

.map-pins circle {
    fill: #fff;
    stroke: none;
}

@keyframes mapPinFloat {
    0%,100% {
        translate: 0 0;
    }

    50% {
        translate: 0 -5px;
    }
}

.map-origin {
    position: absolute;
    right: 30px;
    bottom: 26px;
    display: grid;
    grid-template-columns: 12px auto;
    column-gap: 9px;
}

.map-origin > span {
    width: 9px;
    height: 9px;
    margin-top: 5px;
    background: var(--primary);
    border: 3px solid #c6e6ff;
    border-radius: 50%;
    box-sizing: content-box;
    grid-row: 1 / 3;
}

.map-origin strong {
    color: var(--navy);
    font-size: 12px;
}

.map-origin small {
    color: var(--muted);
    font-size: 10px;
}

.market-content .section-heading {
    margin-bottom: 30px;
}

.market-list {
    margin-bottom: 29px;
    border-top: 1px solid var(--line);
}

.market-row {
    display: grid;
    grid-template-columns: 42px 1fr auto;
    align-items: center;
    gap: 16px;
    min-height: 88px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    transition: padding .3s, background .3s;
}

.market-row:hover {
    padding-right: 12px;
    padding-left: 12px;
    background: #f7fbff;
}

.market-index {
    color: #8aa2ba;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
}

.market-row p {
    margin-bottom: 4px;
    color: var(--secondary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.market-row h3 {
    margin: 0;
    color: var(--navy);
    font-size: 18px;
}

.country-flag {
    display: grid;
    width: 44px;
    height: 30px;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,.06);
    border-radius: 4px;
    box-shadow: 0 3px 8px rgba(7,55,120,.1);
    font-size: 13px;
}

.mexico {
    position: relative;
    background: linear-gradient(90deg,#168653 0 33.3%,#fff 33.3% 66.6%,#d82f33 66.6%);
}

.mexico i {
    width: 4px;
    height: 4px;
    background: #7c6033;
    border-radius: 50%;
}

.eu {
    color: #ffd83d;
    background: #1854b8;
}

.russia {
    background: linear-gradient(#fff 0 33.3%, #1753a4 33.3% 66.6%, #d52d35 66.6%);
}

.china {
    justify-content: start;
    padding-left: 7px;
    color: #ffe048;
    background: #e5272d;
}

.flag-pair {
    display: flex;
    gap: 6px;
}

/* Contact */
.contact {
    position: relative;
    min-height: 590px;
    padding: 62px 0;
    overflow: hidden;
    color: #fff;
    background: var(--navy);
}

.contact-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(3,37,82,.72), rgba(4,59,113,.48) 52%, rgba(5,74,130,.15)), url("../images/contact-ocean.webp") left center / 200% 100% no-repeat;
}

.contact::after {
    position: absolute;
    inset: 0;
    content: "";
    background: radial-gradient(circle at 20% 30%, rgba(63,169,245,.17), transparent 42%);
    pointer-events: none;
}

.contact-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(430px, 510px);
    align-items: center;
    gap: clamp(52px, 7vw, 100px);
}

.contact-info h2 {
    max-width: none;
    margin-bottom: 16px;
    color: #fff;
    font-size: clamp(30px, 2.6vw, 38px);
    line-height: 1.15;
    letter-spacing: -.04em;
    white-space: nowrap;
    text-transform: uppercase;
}

.contact-lead {
    max-width: 590px;
    margin-bottom: 27px;
    color: rgba(255,255,255,.72);
    font-size: 15px;
    line-height: 1.75;
}

.contact-items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 17px 26px;
    max-width: 650px;
}

.contact-item {
    display: flex;
    gap: 13px;
    min-width: 0;
}

.contact-item > span {
    display: grid;
    width: 41px;
    height: 41px;
    flex: 0 0 auto;
    place-items: center;
    color: #fff;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
    backdrop-filter: blur(8px);
}

.contact-item .icon {
    width: 19px;
}

.contact-item small {
    display: block;
    margin: 1px 0 5px;
    color: #8ed4ff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.contact-item p {
    margin: 0;
    color: #fff;
    font-size: 14px;
    line-height: 1.6;
    overflow-wrap: anywhere;
}

.contact-form {
    padding: 26px;
    color: var(--ink);
    background: rgba(255,255,255,.93);
    border: 1px solid rgba(255,255,255,.7);
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(18px);
}

.form-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 25px;
}

.form-head span {
    color: var(--navy);
    font-size: 20px;
    font-weight: 800;
}

.form-head small {
    color: var(--muted);
    font-size: 9px;
}

.contact-form label {
    display: block;
    margin-bottom: 13px;
}

.contact-form label > span {
    display: block;
    margin-bottom: 8px;
    color: #4e6075;
    font-size: 11px;
    font-weight: 650;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    color: var(--ink);
    background: #fff;
    border: 1px solid #d8e6f5;
    border-radius: 10px;
    outline: 0;
    transition: border-color .3s, box-shadow .3s;
}

.contact-form input {
    height: 48px;
    padding: 0 15px;
}

.contact-form textarea {
    min-height: 96px;
    padding: 14px 15px;
    resize: vertical;
}

.contact-form input:focus, .contact-form textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(63,169,245,.13);
}

.contact-form input[aria-invalid="true"], .contact-form textarea[aria-invalid="true"] {
    border-color: #c84545;
}

.contact-form .button {
    width: 100%;
}

.form-status {
    min-height: 18px;
    margin: 12px 0 -8px;
    color: var(--primary);
    font-size: 11px;
    text-align: center;
}

/* Footer */
.footer {
    color: rgba(255,255,255,.75);
    background: #052d65;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.45fr .75fr .8fr 1.1fr;
    gap: 48px;
    padding-top: 48px;
    padding-bottom: 36px;
}

.brand-light {
    color: #fff;
}

.footer-logo {
    filter: brightness(0) invert(1);
}

.footer-brand > p {
    /* max-width: 320px; */
    margin: 17px 0 0;
    font-size: 14px;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 9px;
    margin-top: 17px;
}

.social-links a {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: #fff;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
    transition: transform .3s var(--ease), background .3s;
}

.social-links a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.social-links .icon {
    width: 16px;
    height: 16px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-column h3 {
    margin-bottom: 20px;
    color: #fff;
    font-size: 18px;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.footer-column > a {
    margin-bottom: 10px;
    font-size: 14px;
    transition: color .3s, transform .3s;
}

.footer-column > a:hover {
    color: #fff;
    transform: translateX(4px);
}

.newsletter p {
    margin: 0 0 17px;
    font-size: 14px;
    line-height: 1.7;
}

.newsletter form {
    width: 100%;
}

.newsletter-input {
    display: flex;
    height: 48px;
    overflow: hidden;
    background: #fff;
    border-radius: 8px;
}

.newsletter-input input {
    min-width: 0;
    flex: 1;
    padding: 0 14px;
    border: 0;
    outline: 0;
    font-size: 11px;
}

.newsletter-input button {
    display: grid;
    width: 50px;
    place-items: center;
    color: #fff;
    background: var(--secondary);
    cursor: pointer;
    transition: background .3s;
}

.newsletter-input button:hover {
    background: var(--accent);
}

.newsletter-input .icon {
    width: 19px;
}

.newsletter-status {
    display: block;
    min-height: 18px;
    padding-top: 7px;
    color: #a9ddff;
    font-size: 10px;
}

.footer-bottom {
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,.13);
    font-size: 13px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom div {
    display: flex;
    align-items: center;
    gap: 18px;
}

.footer-bottom div span {
    width: 1px;
    height: 12px;
    background: rgba(255,255,255,.25);
}

.footer-bottom a:hover {
    color: #fff;
}

.back-to-top {
    position: fixed;
    z-index: 80;
    right: 24px;
    bottom: 24px;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    color: #fff;
    background: var(--primary);
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transform: translateY(12px);
    transition: .3s var(--ease);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.back-to-top:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.icon-up {
    transform: rotate(-90deg);
}

@media (max-width: 1199px) {
    :root {
        --header-height: 80px;
    }

    .container {
        width: min(100% - 48px, var(--container));
    }

    .header-inner {
        grid-template-columns: 245px 1fr 100px;
    }

    .brand-copy strong {
        font-size: 18px;
    }

    .main-nav {
        gap: 19px;
    }

    .nav-link {
        font-size: 12px;
    }

    .product-track {
        grid-auto-columns: calc((100% - 24px) / 2);
    }

    .timeline {
        overflow-x: auto;
        grid-template-columns: repeat(6, 170px);
        padding-bottom: 20px;
        scrollbar-width: thin;
        scroll-snap-type: x mandatory;
    }

    .timeline-step {
        scroll-snap-align: start;
    }

    .timeline-line {
        width: 850px;
        right: auto;
        left: 80px;
    }

    .market-grid {
        grid-template-columns: 1fr 420px;
        gap: 45px;
    }

    .market-map-wrap {
        min-height: 420px;
    }

    .footer-grid {
        gap: 32px;
    }
}

@media (max-width: 900px) {
    :root {
        --header-height: 72px;
    }

    .container {
        width: min(100% - 40px, var(--container));
    }

    .section {
        padding: 84px 0;
    }

    .header-inner {
        display: flex;
        justify-content: space-between;
    }

    .brand-logo {
        width: 52px;
        height: 48px;
    }

    .main-nav {
        position: fixed;
        z-index: 98;
        top: var(--header-height);
        right: 0;
        bottom: 0;
        left: 0;
        display: flex;
        height: auto;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0;
        padding: 25px 24px 40px;
        opacity: 0;
        visibility: hidden;
        background: rgba(255,255,255,.98);
        transform: translateY(-10px);
        transition: .3s var(--ease);
        backdrop-filter: blur(16px);
    }

    .main-nav.open {
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .nav-link {
        width: 100%;
        min-height: 58px;
        padding: 0 4px;
        border-bottom: 1px solid var(--line);
        font-size: 16px;
    }

    .nav-link::after {
        top: 20px;
        right: auto;
        bottom: 20px;
        left: -24px;
        width: 3px;
        height: auto;
    }

    .nav-link:hover::after, .nav-link.active::after {
        right: auto;
        left: -24px;
    }

    .menu-toggle {
        display: grid;
        margin-left: 8px;
    }

    .menu-toggle[aria-expanded="true"] .icon-menu {
        display: none;
    }

    .menu-toggle[aria-expanded="true"] .icon-close {
        display: block;
    }

    .hero, .hero-inner {
        min-height: 650px;
    }

    .hero-content {
        width: 570px;
    }

    .hero-wash {
        background: linear-gradient(90deg, rgba(255,255,255,.88) 0%, rgba(255,255,255,.74) 48%, rgba(255,255,255,.16) 78%), linear-gradient(0deg, rgba(255,255,255,.18), transparent);
    }

    .hero-scroll {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 65px;
    }

    .about-visual {
        max-width: 680px;
    }

    .eu-badge {
        right: -5px;
    }

    .market-grid {
        grid-template-columns: 1fr;
    }

    .market-map-wrap {
        order: 2;
    }

    .market-content {
        order: 1;
    }

    .products {
        padding-bottom: 14px;
    }

    .process {
        padding-top: 24px;
        padding-bottom: 56px;
    }

    .market {
        padding: 68px 0;
    }

    .contact {
        padding: 58px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .contact-info {
        max-width: 680px;
    }

    .contact-form {
        max-width: 680px;
        width: 100%;
    }

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

    .newsletter {
        grid-column: 1 / -1;
    }

    .newsletter form {
        max-width: 480px;
    }
}

@media (max-width: 600px) {
    .container {
        width: min(100% - 40px, var(--container));
    }

    .section {
        padding: 68px 0;
    }

    .brand-copy strong {
        font-size: 15px;
    }

    .brand-copy small {
        font-size: 6.3px;
    }

    .brand-logo {
        width: 44px;
        height: 42px;
    }

    .language-trigger {
        min-width: 66px;
        height: 42px;
        gap: 5px;
    }

    .language-trigger .flag {
        display: none;
    }

    .hero {
        min-height: 700px;
    }

    .hero-inner {
        min-height: 700px;
        align-items: flex-start;
    }

    .hero-media {
        background-position: 61% center;
    }

    .hero-wash {
        background: linear-gradient(180deg, rgba(255,255,255,.91) 0%, rgba(255,255,255,.82) 52%, rgba(255,255,255,.24) 75%, rgba(255,255,255,.04) 100%);
    }

    .hero::after {
        width: 100%;
        height: 28px;
        clip-path: polygon(0 65%, 80% 0, 100% 100%, 0 100%);
    }

    .hero-content {
        width: 100%;
        padding: 65px 0 190px;
    }

    .hero-content .eyebrow {
        font-size: 11px;
    }

    .hero h1 {
        margin-bottom: 15px;
        font-size: clamp(38px, 11vw, 47px);
    }

    .hero-tagline {
        gap: 8px;
        font-size: 11px;
    }

    .hero-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        max-width: 360px;
    }

    .feature-icon {
        width: 43px;
        height: 43px;
    }

    .feature-icon .icon {
        width: 22px;
    }

    .hero-pagination {
        right: auto;
        bottom: 27px;
        left: 50%;
    }

    .section-heading h2 {
        font-size: 31px;
    }

    .section-heading p:last-child {
        font-size: 14px;
        line-height: 1.75;
    }

    .about-grid {
        gap: 52px;
    }

    .about-visual {
        padding: 0 0 34px 14px;
    }

    .about-visual::before {
        top: -14px;
        right: 14px;
        bottom: 55px;
    }

    .about-image-wrap {
        border-radius: 20px;
    }

    .eu-badge {
        width: 115px;
        height: 76px;
        right: -4px;
        padding: 15px;
        border-width: 4px;
    }

    .eu-badge strong {
        font-size: 19px;
    }

    .image-caption {
        margin-right: 110px;
        font-size: 8px;
    }

    .stats-grid {
        gap: 10px;
    }

    .stat-card {
        min-height: 132px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 18px 15px;
    }

    .stat-card > .icon {
        width: 27px;
        height: 27px;
    }

    .stat-card strong {
        font-size: 21px;
    }

    .stat-card span {
        font-size: 10px;
    }

    .section-top {
        align-items: center;
        margin-bottom: 30px;
    }

    .carousel-controls {
        display: none;
    }

    .product-track {
        width: calc(100vw - 20px);
        grid-auto-columns: min(82vw, 310px);
        gap: 14px;
        margin-right: -20px;
        padding-right: 20px;
    }

    .product-content {
        padding: 20px;
    }

    .carousel-progress {
        width: 68%;
    }

    .section-heading.centered {
        margin-bottom: 45px;
    }

    .timeline {
        margin-right: -20px;
        grid-template-columns: repeat(6, 150px);
    }

    .timeline-line {
        width: 750px;
        left: 70px;
    }

    .timeline-icon {
        width: 88px;
        height: 88px;
    }

    .market-map-wrap {
        min-height: 330px;
        padding: 20px 15px;
        border-radius: 20px;
    }

    .world-map {
        margin-top: 12px;
    }

    .map-origin {
        right: 18px;
        bottom: 16px;
    }

    .market-row {
        grid-template-columns: 32px 1fr auto;
    }

    .country-flag {
        width: 39px;
        height: 27px;
    }

    .flag-pair {
        gap: 3px;
    }

    .products {
        padding-bottom: 12px;
    }

    .process {
        padding-top: 22px;
        padding-bottom: 52px;
        background-size: 100% 100%;
    }

    .market {
        padding: 56px 0;
    }

    .contact {
        min-height: auto;
        padding: 52px 0;
    }

    .contact-bg {
        background-position: left center;
        background-size: 200% 100%;
    }

    .contact::after {
        background: linear-gradient(180deg, rgba(4,42,91,.22), rgba(3,37,82,.7));
    }

    .contact-grid {
        gap: 42px;
    }

    .contact-info h2 {
        font-size: clamp(23px, 7vw, 29px);
        white-space: nowrap;
    }

    .contact-items {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .contact-form {
        padding: 24px 18px;
        border-radius: 16px;
    }

    .form-head {
        display: block;
    }

    .form-head small {
        display: block;
        margin-top: 5px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-top: 42px;
        padding-bottom: 30px;
    }

    .newsletter {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 12px;
        padding: 20px 0;
        line-height: 1.6;
    }

    .back-to-top {
        right: 16px;
        bottom: 16px;
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 370px) {
    .container {
        width: min(100% - 32px, var(--container));
    }

    .brand-copy strong {
        font-size: 12.5px;
    }

    .brand-copy small {
        font-size: 5.5px;
    }

    .header-actions .language {
        display: none;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero-feature {
        font-size: 10px;
    }

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

    .stat-card {
        min-height: 95px;
        flex-direction: row;
        align-items: center;
    }

    .market-row h3 {
        font-size: 15px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

@media (prefers-contrast: more) {
    :root {
        --muted: #425368;
        --line: #a9bfd5;
    }

    .product-card, .stat-card, .contact-form {
        border-width: 2px;
    }
}

/* Final market-map image treatment */
.market-map-wrap {
    display: flex;
    min-height: 0 !important;
    align-items: center;
    padding: 0 !important;
    overflow: hidden;
    background: #fff;
    border: 0;
    border-radius: 0 !important;
}

.world-map-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}
