:root {
    color-scheme: light;
    --ink: #12243a;
    --ink-soft: #34465a;
    --blue: #1d6d9f;
    --blue-deep: #0d4f7a;
    --accent: #e85b4a;
    --accent-dark: #c94435;
    --paper: #ffffff;
    --mist: #f3f6f8;
    --line: #dce4e9;
    --muted: #6b7b89;
    --shadow-sm: 0 12px 36px rgba(18, 36, 58, 0.08);
    --shadow-lg: 0 24px 70px rgba(18, 36, 58, 0.16);
    --radius-sm: 12px;
    --radius-md: 22px;
    --radius-lg: 34px;
    --container: 1240px;
    --header-height: 78px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    width: 100%;
    max-width: 100%;
    scroll-behavior: smooth;
    background: var(--paper);
    overflow-x: hidden;
}

body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

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

img {
    height: auto;
}

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

button,
input,
textarea,
select {
    font: inherit;
}

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

:focus-visible {
    outline: 3px solid rgba(29, 109, 159, 0.55);
    outline-offset: 4px;
}

.skip-link {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 2000;
    padding: 10px 16px;
    color: #fff;
    background: var(--ink);
    border-radius: 8px;
    transform: translateY(-150%);
}

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

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

.narrow {
    width: min(calc(100% - 48px), 900px);
    margin-inline: auto;
}

.section {
    padding: 112px 0;
}

.section--soft {
    background: var(--mist);
}

.section--ink {
    color: #fff;
    background: var(--ink);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
    color: var(--blue);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.eyebrow::before {
    width: 28px;
    height: 2px;
    content: "";
    background: currentColor;
}

.section--ink .eyebrow {
    color: #7fc1e4;
}

.display-title,
.section-title,
.page-title {
    margin: 0;
    font-weight: 800;
    line-height: 1.14;
    letter-spacing: -0.045em;
    text-wrap: balance;
}

.display-title {
    font-size: clamp(2.7rem, 5.8vw, 6.25rem);
}

.section-title {
    font-size: clamp(2rem, 3.7vw, 4rem);
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 5.2rem);
}

.lead {
    max-width: 760px;
    margin: 24px 0 0;
    color: var(--ink-soft);
    font-size: clamp(1.05rem, 1.35vw, 1.3rem);
    line-height: 1.8;
    word-break: keep-all;
}

.section--ink .lead {
    color: rgba(255, 255, 255, 0.72);
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 36px;
    margin-bottom: 54px;
}

.section-heading__copy {
    max-width: 760px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--blue-deep);
    font-weight: 800;
    white-space: nowrap;
}

.text-link::after {
    content: "→";
    transition: transform 0.25s ease;
}

.text-link:hover::after {
    transform: translateX(5px);
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 800;
    line-height: 1.2;
    transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

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

.button--primary {
    color: #fff;
    background: var(--accent);
}

.button--primary:hover {
    background: var(--accent-dark);
}

.button--light {
    color: var(--ink);
    background: #fff;
}

.button--outline-light {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.54);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

.button--outline-light:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.16);
}

.button--outline {
    color: var(--ink);
    border-color: var(--line);
    background: #fff;
}

.button--outline:hover {
    color: var(--blue-deep);
    border-color: var(--blue);
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    border-bottom: 1px solid rgba(18, 36, 58, 0.08);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    width: min(calc(100% - 40px), 1440px);
    height: 100%;
    align-items: center;
    margin-inline: auto;
}

.brand {
    position: relative;
    z-index: 1002;
    display: flex;
    width: 118px;
    align-items: center;
    flex: 0 0 auto;
}

.brand img {
    width: 100%;
}

.site-nav {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: flex-start;
    margin-left: clamp(38px, 4vw, 72px);
}

.nav-list {
    display: flex;
    width: 100%;
    align-items: center;
    gap: clamp(14px, 1.8vw, 31px);
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-link {
    position: relative;
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    color: #293b4e;
    font-size: 0.94rem;
    font-weight: 750;
    white-space: nowrap;
}

.nav-link::after {
    position: absolute;
    right: 0;
    bottom: 3px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.25s ease;
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-link--external {
    gap: 5px;
}

.nav-link--external::before {
    order: 2;
    content: "↗";
    color: var(--muted);
    font-size: 0.8em;
}

.language-link {
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    padding: 8px 17px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ink);
    font-size: 0.86rem;
    font-weight: 800;
}

.language-link:hover {
    border-color: var(--blue);
    color: var(--blue-deep);
}

@media (min-width: 1121px) {
    .nav-list li:last-child {
        margin-left: auto;
    }
}

.nav-toggle {
    position: relative;
    z-index: 1002;
    display: none;
    width: 46px;
    height: 46px;
    margin-left: auto;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
    position: absolute;
    left: 10px;
    width: 26px;
    height: 2px;
    content: "";
    background: var(--ink);
    transition: transform 0.25s ease, top 0.25s ease, opacity 0.2s ease;
}

.nav-toggle::before { top: 14px; }
.nav-toggle span { top: 22px; }
.nav-toggle::after { top: 30px; }

.nav-toggle[aria-expanded="true"]::before {
    top: 22px;
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"]::after {
    top: 22px;
    transform: rotate(-45deg);
}

/* Hero */
.hero {
    position: relative;
    min-height: clamp(540px, 72vh, 720px);
    overflow: hidden;
    color: #fff;
    background: var(--ink);
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.1s ease, visibility 1.1s ease;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.025);
    transition: transform 7s ease-out;
}

.hero-slide:first-child img {
    object-position: center 78%;
}

.hero-slide:nth-child(2) img {
    object-position: center center;
}

.hero-slide.is-active img {
    transform: scale(1.075);
}

.hero::after {
    position: absolute;
    inset: 0;
    z-index: 2;
    content: "";
    background:
        linear-gradient(90deg, rgba(7, 22, 36, 0.78) 0%, rgba(7, 22, 36, 0.5) 42%, rgba(7, 22, 36, 0.12) 74%),
        linear-gradient(0deg, rgba(7, 22, 36, 0.38) 0%, transparent 38%);
}

.hero-inner {
    position: relative;
    z-index: 3;
    display: flex;
    min-height: clamp(540px, 72vh, 720px);
    align-items: center;
    padding: 76px 0 86px;
}

.hero-copy {
    max-width: 850px;
}

.hero-copy .eyebrow {
    color: #fff;
}

.hero-copy .eyebrow::before {
    background: var(--accent);
}

.hero-copy p {
    max-width: 680px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1.08rem, 1.55vw, 1.45rem);
    font-weight: 550;
    word-break: keep-all;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 38px;
}

.hero-controls {
    position: absolute;
    right: max(24px, calc((100vw - var(--container)) / 2));
    bottom: 32px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-dot {
    width: 34px;
    height: 4px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
}

.hero-dot.is-active {
    background: #fff;
}

.hero-pause {
    display: grid;
    width: 36px;
    height: 36px;
    margin-left: 4px;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: 50%;
    color: #fff;
    background: rgba(9, 27, 42, 0.28);
    cursor: pointer;
}

.hero-pause::before {
    content: "Ⅱ";
    font-size: 0.72rem;
    font-weight: 900;
}

.hero-pause.is-paused::before {
    content: "▶";
    padding-left: 2px;
}

/* Home */
.intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: clamp(50px, 8vw, 110px);
    align-items: start;
}

.intro-copy p {
    margin: 0;
    color: var(--ink-soft);
    font-size: clamp(1.08rem, 1.35vw, 1.27rem);
    line-height: 1.95;
    word-break: keep-all;
}

.intro-copy .text-link {
    margin-top: 28px;
}

.trust-list {
    display: grid;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--line);
    list-style: none;
}

.trust-list li {
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 22px;
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
}

.trust-list strong {
    color: var(--blue-deep);
    font-size: 1.06rem;
}

.trust-list span {
    color: var(--muted);
}

.market-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 18px;
}

.market-card {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    border-radius: var(--radius-md);
    background: var(--ink);
    box-shadow: var(--shadow-sm);
}

.market-card:nth-child(1),
.market-card:nth-child(2) {
    grid-column: span 6;
}

.market-card:nth-child(n+3) {
    grid-column: span 4;
    min-height: 320px;
}

.market-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.market-card::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(0deg, rgba(9, 27, 42, 0.76), rgba(9, 27, 42, 0.03) 68%);
}

.market-card:hover img {
    transform: scale(1.045);
}

.market-card__copy {
    position: absolute;
    right: 26px;
    bottom: 24px;
    left: 26px;
    z-index: 2;
    color: #fff;
}

.market-card__copy span {
    display: block;
    margin-bottom: 5px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.market-card__copy h3 {
    margin: 0;
    font-size: clamp(1.4rem, 2.2vw, 2.15rem);
    line-height: 1.2;
}

.capability-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow-lg);
}

.capability-image {
    min-height: 620px;
}

.capability-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.capability-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(42px, 6vw, 84px);
}

.process-mini {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 28px;
    margin: 38px 0 0;
    padding: 0;
    list-style: none;
}

.process-mini li {
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 10px;
    align-items: center;
    padding: 14px 0;
    border-top: 1px solid var(--line);
    color: var(--ink-soft);
    font-weight: 700;
}

.process-mini b {
    color: var(--accent);
    font-size: 0.78rem;
}

.quality-teaser {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
    gap: clamp(50px, 8vw, 100px);
    align-items: center;
}

.quality-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.quality-point {
    min-height: 210px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.055);
}

.quality-point strong {
    display: block;
    margin: 22px 0 8px;
    font-size: 1.08rem;
}

.quality-point p {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.92rem;
}

.quality-icon {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border-radius: 14px;
    color: #fff;
    background: var(--blue);
    font-size: 1.15rem;
    font-weight: 900;
}

.global-strip {
    overflow: hidden;
    padding: 28px 0;
    border-top: 1px solid rgba(18, 36, 58, 0.1);
    border-bottom: 1px solid rgba(18, 36, 58, 0.1);
}

.country-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 28px;
    margin: 0;
    padding: 0;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    list-style: none;
    text-transform: uppercase;
}

.country-list li:not(:last-child)::after {
    margin-left: 28px;
    color: var(--accent);
    content: "•";
}

/* Export map */
.export-map-section {
    padding: clamp(70px, 8vw, 120px) 0;
    background: #fff;
}

.export-map-section__inner {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(560px, 1.28fr);
    gap: clamp(40px, 7vw, 110px);
    align-items: center;
}

.export-map-section__copy h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(2.15rem, 4vw, 4.5rem);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.export-map-section__copy p:last-child {
    max-width: 520px;
    margin: 24px 0 0;
    color: var(--muted);
    line-height: 1.8;
}

.export-map {
    position: relative;
    width: 100%;
    aspect-ratio: 494.7 / 265.7;
}

.export-map__base {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.34;
    filter: grayscale(1) contrast(0.75);
}

.export-map--dark .export-map__base {
    opacity: 0.45;
    filter: grayscale(1) invert(1) contrast(0.78);
}

.map-pin {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 7px;
    transform: translate(-7px, -7px);
    white-space: nowrap;
}

.map-pin i {
    display: block;
    width: 12px;
    height: 12px;
    flex: 0 0 auto;
    border: 3px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 1px rgba(218, 74, 72, 0.3), 0 4px 14px rgba(218, 74, 72, 0.35);
}

.map-pin b {
    color: var(--ink);
    font-size: clamp(0.64rem, 0.72vw, 0.76rem);
    font-weight: 850;
    letter-spacing: 0.08em;
}

.export-map--dark .map-pin b {
    color: rgba(255, 255, 255, 0.9);
}

.map-pin--canada { top: 25%; left: 17%; }
.map-pin--usa { top: 41%; left: 18%; }
.map-pin--spain { top: 43%; left: 47%; }
.map-pin--qatar { top: 53%; left: 62%; }
.map-pin--mongolia { top: 32%; left: 75%; }
.map-pin--japan { top: 44%; left: 87%; }

.cta-band {
    padding: 100px 0;
    color: #fff;
    background:
        linear-gradient(110deg, rgba(9, 27, 42, 0.95), rgba(13, 79, 122, 0.88)),
        url("assets/images/main2.webp") center / cover;
}

.cta-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-band h2 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1.18;
    letter-spacing: -0.04em;
}

.cta-band p {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1.08rem;
}

/* Page hero */
.page-hero {
    position: relative;
    display: flex;
    min-height: 480px;
    align-items: flex-end;
    overflow: hidden;
    color: #fff;
    background: var(--ink);
}

.page-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    content: "";
    background: linear-gradient(90deg, rgba(7, 22, 36, 0.83), rgba(7, 22, 36, 0.24)), linear-gradient(0deg, rgba(7, 22, 36, 0.54), transparent 58%);
}

.page-hero__inner {
    position: relative;
    z-index: 2;
    padding: 88px 0 70px;
}

.page-hero p {
    max-width: 720px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1.05rem, 1.5vw, 1.28rem);
}

.page-hero .eyebrow {
    color: #fff;
}

.page-hero .eyebrow::before {
    background: var(--accent);
}

/* Products */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.product-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-sm);
}

.product-card__image {
    display: grid;
    aspect-ratio: 4 / 3;
    place-items: center;
    padding: 24px;
    background: #f7f9fa;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 27px;
}

.product-card h2 {
    margin: 0;
    font-size: 1.42rem;
    line-height: 1.3;
}

.product-card p {
    margin: 13px 0 0;
    color: var(--muted);
}

.product-card .text-link {
    margin-top: auto;
    padding-top: 24px;
    font-size: 0.93rem;
}

/* Markets detail */
.market-tabs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-bottom: 50px;
}

.market-tab {
    min-height: 52px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ink-soft);
    background: #fff;
    font-weight: 800;
    cursor: pointer;
}

.market-tab[aria-selected="true"] {
    color: #fff;
    border-color: var(--ink);
    background: var(--ink);
}

.market-panel {
    scroll-margin-top: calc(var(--header-height) + 24px);
}

.js .market-panel[hidden] {
    display: none;
}

.market-panel__intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
    gap: 56px;
    align-items: center;
    margin-bottom: 38px;
}

.market-panel__intro img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.market-panel h2 {
    margin: 0;
    font-size: clamp(2rem, 3.3vw, 3.5rem);
    line-height: 1.18;
    letter-spacing: -0.04em;
}

.market-panel__intro p {
    margin: 20px 0 0;
    color: var(--ink-soft);
    font-size: 1.08rem;
    line-height: 1.85;
}

.format-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.format-tags li {
    padding: 8px 13px;
    border-radius: 999px;
    color: var(--blue-deep);
    background: #eaf3f8;
    font-size: 0.88rem;
    font-weight: 800;
}

.sample-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.sample-grid img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: var(--radius-sm);
    background: var(--mist);
}

.sample-grid img:first-child:nth-last-child(5),
.sample-grid img:first-child:nth-last-child(5) ~ img {
    grid-column: span 1;
}

.market-panel__footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 28px;
}

/* Manufacturing */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.stat-card {
    min-height: 200px;
    padding: 30px;
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow-sm);
}

.stat-card span {
    display: block;
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.stat-card strong {
    display: block;
    margin-top: 28px;
    color: var(--blue-deep);
    font-size: clamp(1.55rem, 2.6vw, 2.65rem);
    line-height: 1.14;
    letter-spacing: -0.04em;
}

.stat-card small {
    display: block;
    margin-top: 12px;
    color: var(--muted);
    line-height: 1.5;
}

.fine-print {
    margin: 22px 0 0;
    color: var(--muted);
    font-size: 0.88rem;
}

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

.process-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fff;
}

.process-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.process-card__body {
    padding: 28px;
}

.process-number {
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.process-card h3 {
    margin: 8px 0 0;
    font-size: 1.45rem;
}

.process-card p {
    margin: 12px 0 0;
    color: var(--muted);
}

.quality-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.compliance-card {
    padding: clamp(30px, 4vw, 52px);
    border-radius: var(--radius-md);
    background: #fff;
}

.compliance-card h3 {
    margin: 0;
    font-size: clamp(1.5rem, 2.5vw, 2.35rem);
    line-height: 1.25;
}

.compliance-card p {
    margin: 18px 0 0;
    color: var(--ink-soft);
}

.compliance-list {
    display: grid;
    gap: 12px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.compliance-list li {
    position: relative;
    padding-left: 24px;
    color: var(--ink-soft);
}

.compliance-list li::before {
    position: absolute;
    top: 0.68em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    content: "";
    background: var(--accent);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 48px;
}

.cert-card {
    display: flex;
    min-height: 250px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    text-align: center;
    background: #fff;
}

.cert-card img {
    width: 110px;
    height: 110px;
    object-fit: contain;
}

.cert-card strong {
    margin-top: 18px;
}

.cert-card span {
    margin-top: 5px;
    color: var(--muted);
    font-size: 0.88rem;
}

.export-panel {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.world-orbit {
    position: relative;
    display: grid;
    aspect-ratio: 1 / 1;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
}

.world-orbit::before,
.world-orbit::after {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    content: "";
}

.world-orbit::before { inset: 16%; }
.world-orbit::after { inset: 32%; }

.world-orbit strong {
    position: relative;
    z-index: 1;
    max-width: 240px;
    color: #fff;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1.1;
    text-align: center;
}

.export-countries {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 34px 0 0;
    padding: 0;
    list-style: none;
}

.export-countries li {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.76);
    font-weight: 750;
}

/* About */
.about-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(50px, 8vw, 100px);
    align-items: center;
}

.about-feature__image {
    position: relative;
}

.about-feature__image img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.since-badge {
    position: absolute;
    right: -22px;
    bottom: 34px;
    min-width: 170px;
    padding: 22px;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    color: #fff;
    background: var(--blue-deep);
    box-shadow: var(--shadow-lg);
}

.since-badge span {
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.since-badge strong {
    display: block;
    margin-top: 4px;
    font-size: 2.2rem;
    line-height: 1;
}

.about-copy p {
    margin: 24px 0 0;
    color: var(--ink-soft);
    font-size: 1.06rem;
    line-height: 1.9;
}

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

.value-card {
    min-height: 280px;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fff;
}

.value-card b {
    color: var(--accent);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
}

.value-card h3 {
    margin: 34px 0 0;
    font-size: 1.45rem;
}

.value-card p {
    margin: 14px 0 0;
    color: var(--muted);
}

.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.vision-card {
    min-height: 380px;
    padding: clamp(34px, 5vw, 64px);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.06);
}

.vision-card h3 {
    margin: 0;
    font-size: clamp(1.7rem, 3vw, 3rem);
}

.vision-card p,
.vision-card li {
    color: rgba(255, 255, 255, 0.72);
}

.vision-card ul {
    display: grid;
    gap: 11px;
    margin: 22px 0 0;
    padding-left: 20px;
}

/* Contact */
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: clamp(50px, 8vw, 100px);
    align-items: start;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.field {
    display: grid;
    gap: 8px;
}

.field--full {
    grid-column: 1 / -1;
}

.field label,
.field > span {
    color: var(--ink-soft);
    font-size: 0.88rem;
    font-weight: 800;
}

.field input,
.field textarea,
.field select {
    width: 100%;
    min-height: 54px;
    padding: 13px 15px;
    border: 1px solid var(--line);
    border-radius: 10px;
    color: var(--ink);
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field textarea {
    min-height: 160px;
    resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
    border-color: var(--blue);
    outline: 0;
    box-shadow: 0 0 0 4px rgba(29, 109, 159, 0.12);
}

.checkbox-field {
    display: flex;
    grid-column: 1 / -1;
    align-items: flex-start;
    gap: 10px;
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.checkbox-field input {
    width: 18px;
    height: 18px;
    margin-top: 4px;
    accent-color: var(--blue);
}

.checkbox-field a {
    color: var(--blue-deep);
    text-decoration: underline;
}

.form-actions {
    grid-column: 1 / -1;
    margin-top: 6px;
}

.form-status {
    display: none;
    grid-column: 1 / -1;
    padding: 16px 18px;
    border-radius: 10px;
    font-weight: 700;
}

.form-status.is-visible {
    display: block;
}

.form-status--success {
    color: #155c3d;
    background: #e6f5ee;
}

.form-status--error {
    color: #8b2c25;
    background: #fdecea;
}

.hp-field {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
}

.contact-card {
    padding: clamp(30px, 4vw, 48px);
    border-radius: var(--radius-md);
    color: #fff;
    background: var(--ink);
}

.contact-card h2 {
    margin: 0;
    font-size: 1.75rem;
}

.contact-details {
    display: grid;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.contact-details li {
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-details span {
    display: block;
    color: rgba(255, 255, 255, 0.52);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-details strong,
.contact-details a {
    display: block;
    margin-top: 6px;
    color: #fff;
    font-size: 1.02rem;
}

.map-frame {
    height: 430px;
    margin-top: 24px;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Privacy */
.prose {
    color: var(--ink-soft);
}

.prose h1,
.prose h2 {
    color: var(--ink);
    letter-spacing: -0.03em;
}

.prose h1 {
    margin: 0 0 40px;
    font-size: clamp(2.3rem, 4vw, 4rem);
}

.prose h2 {
    margin: 48px 0 12px;
    font-size: 1.4rem;
}

.prose p,
.prose li {
    line-height: 1.85;
}

.prose table {
    width: 100%;
    border-collapse: collapse;
}

.prose th,
.prose td {
    padding: 13px;
    border: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

/* Footer */
.site-footer {
    padding: 70px 0 28px;
    color: rgba(255, 255, 255, 0.68);
    background: #091b2a;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(250px, 1.25fr) 0.75fr 0.75fr;
    gap: 56px;
    padding-bottom: 54px;
}

.footer-brand img {
    width: 130px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    max-width: 470px;
    margin: 24px 0 0;
    line-height: 1.85;
}

.footer-title {
    margin: 0 0 20px;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.footer-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.86rem;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

/* Reveal */
.js [data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.js [data-reveal].is-revealed {
    opacity: 1;
    transform: translateY(0);
}

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

    .nav-toggle {
        display: block;
    }

    .site-header {
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }

    .site-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1001;
        display: block;
        width: 100%;
        max-width: 100vw;
        height: 100vh;
        height: 100dvh;
        padding: calc(var(--header-height) + 36px) 28px 36px;
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior: contain;
        visibility: hidden;
        pointer-events: none;
        background: #fff;
        transform: translate3d(100%, 0, 0);
        transition: transform 0.35s ease, visibility 0s linear 0.35s;
        margin-left: 0;
    }

    .site-nav.is-open {
        visibility: visible;
        pointer-events: auto;
        transform: translate3d(0, 0, 0);
        transition: transform 0.35s ease;
    }

    .nav-list {
        display: grid;
        width: min(100%, 680px);
        max-width: 680px;
        gap: 0;
        margin-inline: auto;
    }

    .nav-list li {
        border-bottom: 1px solid var(--line);
    }

    .nav-link {
        width: 100%;
        min-height: 58px;
        font-size: 1.18rem;
    }

    .nav-link::after {
        display: none;
    }

    .language-link {
        width: fit-content;
        margin-top: 24px;
    }

    .quality-points,
    .stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .market-tabs {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .section {
        padding: 84px 0;
    }

    .intro-grid,
    .quality-teaser,
    .about-feature,
    .contact-layout,
    .export-panel {
        grid-template-columns: 1fr;
    }

    .export-map-section__inner {
        grid-template-columns: 1fr;
    }

    .export-map-section__copy {
        max-width: 680px;
    }

    .market-card:nth-child(n) {
        grid-column: span 6;
    }

    .capability-feature {
        grid-template-columns: 1fr;
    }

    .capability-image {
        min-height: 420px;
    }

    .quality-grid,
    .vision-grid {
        grid-template-columns: 1fr;
    }

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

    .market-panel__intro {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .sample-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 680px) {
    :root {
        --header-height: 66px;
    }

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

    .header-inner {
        width: calc(100% - 28px);
    }

    .brand {
        width: 100px;
    }

    .section {
        padding: 70px 0;
    }

    .export-map-section {
        padding: 70px 0 54px;
        overflow: hidden;
    }

    .export-map-section__inner {
        gap: 30px;
    }

    .export-map {
        width: 112%;
        margin-left: -6%;
    }

    .map-pin {
        gap: 4px;
        transform: translate(-5px, -5px);
    }

    .map-pin i {
        width: 9px;
        height: 9px;
        border-width: 2px;
    }

    .map-pin b {
        font-size: 0.54rem;
        letter-spacing: 0.04em;
    }

    .map-pin--canada { top: 23%; left: 15%; }
    .map-pin--usa { top: 41%; left: 16%; }
    .map-pin--spain { top: 42%; left: 45%; }
    .map-pin--qatar { top: 55%; left: 61%; }
    .map-pin--mongolia { top: 28%; left: 72%; }
    .map-pin--japan { top: 45%; left: 84%; }

    .section-heading {
        display: block;
        margin-bottom: 36px;
    }

    .section-heading .text-link {
        margin-top: 20px;
    }

    .display-title {
        font-size: clamp(2.55rem, 12.5vw, 4.2rem);
    }

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

    .hero-inner {
        align-items: flex-end;
        padding-bottom: 108px;
    }

    .hero::after {
        background: linear-gradient(0deg, rgba(7, 22, 36, 0.88) 0%, rgba(7, 22, 36, 0.35) 68%, rgba(7, 22, 36, 0.1));
    }

    .hero-slide:first-child img {
        object-position: 62% 76%;
    }

    .hero-slide:nth-child(2) img {
        object-position: 54% center;
    }

    .hero-copy p {
        margin-top: 20px;
        font-size: 1rem;
    }

    .hero-actions {
        margin-top: 28px;
    }

    .hero-actions .button {
        min-height: 48px;
        padding-inline: 18px;
        font-size: 0.92rem;
    }

    .hero-controls {
        right: 18px;
        bottom: 24px;
    }

    .trust-list li {
        grid-template-columns: 90px 1fr;
    }

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

    .market-card:nth-child(n) {
        grid-column: auto;
        min-height: 270px;
    }

    .capability-image {
        min-height: 320px;
    }

    .capability-copy {
        padding: 34px 24px 40px;
    }

    .process-mini {
        grid-template-columns: 1fr;
    }

    .quality-points,
    .stat-grid,
    .product-grid,
    .process-grid,
    .cert-grid {
        grid-template-columns: 1fr;
    }

    .quality-point {
        min-height: auto;
    }

    .cta-band {
        padding: 72px 0;
    }

    .cta-band__inner {
        display: block;
    }

    .cta-band .button {
        margin-top: 28px;
    }

    .page-hero {
        min-height: 390px;
    }

    .page-hero__inner {
        padding-bottom: 52px;
    }

    .market-tabs {
        display: flex;
        margin-right: -18px;
        padding-right: 18px;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .market-tabs::-webkit-scrollbar {
        display: none;
    }

    .market-tab {
        flex: 0 0 auto;
        padding-inline: 20px;
    }

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

    .stat-card {
        min-height: 170px;
    }

    .export-countries {
        grid-template-columns: 1fr;
    }

    .world-orbit {
        max-width: 380px;
        margin-inline: auto;
    }

    .since-badge {
        right: -10px;
        bottom: 20px;
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .field--full,
    .checkbox-field,
    .form-actions,
    .form-status {
        grid-column: auto;
    }

    .prose table,
    .prose thead,
    .prose tbody,
    .prose tr,
    .prose th,
    .prose td {
        display: block;
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        display: block;
    }

    .footer-legal {
        margin-top: 14px;
    }
}

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

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

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