/* ==========================================================================
   GAMA-PLAS — Advanced Packaging Systems & Solutions
   Design system + components (vanilla CSS)
   ========================================================================== */

:root {
  /* Brand */
  --brand: #0093d6;
  --brand-600: #0079b8;
  --brand-700: #005f93;
  --brand-50: #e8f5fc;
  --red: #e4042a;
  --eco: #1fa971;
  --eco-400: #3cc98b;
  --eco-50: #e7f7ef;

  /* Neutrals */
  --navy: #061b30;
  --navy-800: #0a2540;
  --ink: #0d2136;
  --text: #33475b;
  --muted: #64778a;
  --line: #e2e9f0;
  --bg: #ffffff;
  --bg-soft: #f3f7fa;
  --bg-tint: #eef5f9;

  /* Type */
  --font-head: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Layout */
  --container: 1280px;
  --gutter: clamp(16px, 4vw, 40px);
  --header-h: 84px;
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-sm: 0 1px 2px rgba(6, 27, 48, .06), 0 2px 8px rgba(6, 27, 48, .05);
  --shadow: 0 10px 30px -12px rgba(6, 27, 48, .18), 0 4px 10px -6px rgba(6, 27, 48, .08);
  --shadow-lg: 0 30px 60px -24px rgba(6, 27, 48, .35);
  --ease: cubic-bezier(.22, .8, .24, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.12; letter-spacing: -.02em; margin: 0 0 .5em; font-weight: 800; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; }
:focus-visible { outline: 3px solid var(--eco-400); outline-offset: 3px; border-radius: 6px; }
::selection { background: var(--brand); color: #fff; }
.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; }
.icon { width: 1.25em; height: 1.25em; flex: none; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.skip-link { position: absolute; left: 16px; top: -60px; z-index: 200; background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 10px; }
.skip-link:focus { top: 12px; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(72px, 9vw, 136px); position: relative; }
.section--soft { background: var(--bg-soft); }
.section--tint { background: linear-gradient(180deg, var(--bg-soft), #fff); }
.section--dark { background: var(--navy); color: #b9c8d8; }
.section--dark h2, .section--dark h3 { color: #fff; }

.section-head { display: grid; gap: 20px; margin-bottom: clamp(40px, 5vw, 64px); max-width: 760px; }
.section-head--split { max-width: none; grid-template-columns: 1.1fr .9fr; align-items: end; gap: 32px 64px; }
.section-head--center { margin-inline: auto; text-align: center; justify-items: center; }
.section-head h2 { margin: 0; font-size: clamp(2rem, 3.8vw, 3.3rem); }
.section-head p { margin: 0; font-size: clamp(1rem, 1.3vw, 1.125rem); color: var(--muted); }
.section--dark .section-head p { color: #9fb3c8; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: .8rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--brand-600);
}
.eyebrow::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--eco); box-shadow: 0 0 0 4px rgba(31, 169, 113, .18); }
.section--dark .eyebrow { color: var(--eco-400); }

.lead { font-size: clamp(1.05rem, 1.4vw, 1.25rem); line-height: 1.6; color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--ink); --btn-fg: #fff; --btn-bd: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 0 24px; border-radius: 999px;
  background: var(--btn-bg); color: var(--btn-fg); border: 1.5px solid var(--btn-bd);
  font-family: var(--font-head); font-weight: 700; font-size: .95rem; letter-spacing: -.005em;
  white-space: nowrap; transition: transform .25s var(--ease), background-color .25s, color .25s, border-color .25s, box-shadow .25s;
}
.btn .icon { transition: transform .3s var(--ease); }
.btn:hover .icon--arrow { transform: translateX(4px); }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { --btn-bg: var(--brand); box-shadow: 0 10px 24px -10px rgba(0, 147, 214, .7); }
.btn-primary:hover { --btn-bg: var(--brand-600); }
.btn-eco { --btn-bg: var(--eco); box-shadow: 0 10px 24px -10px rgba(31, 169, 113, .7); }
.btn-eco:hover { --btn-bg: #188e5e; }
.btn-light { --btn-bg: #fff; --btn-fg: var(--ink); }
.btn-light:hover { --btn-bg: var(--brand-50); }
.btn-ghost { --btn-bg: rgba(255, 255, 255, .08); --btn-fg: #fff; --btn-bd: rgba(255, 255, 255, .45); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.btn-ghost:hover { --btn-bg: rgba(255, 255, 255, .18); --btn-bd: #fff; }
.btn-outline { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: var(--line); }
.btn-outline:hover { --btn-bd: var(--ink); }
.btn-sm { min-height: 40px; padding: 0 16px; font-size: .875rem; }
.btn-block { width: 100%; }

.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 700; color: var(--brand-600); }
.link-arrow .icon { transition: transform .3s var(--ease); }
.link-arrow:hover .icon { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100; height: var(--header-h);
  color: #fff; transition: background-color .35s, box-shadow .35s, color .35s, height .35s;
}
.site-header::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(4, 16, 30, .45), transparent); pointer-events: none; transition: opacity .35s; }
.site-header.is-solid { background: rgba(255, 255, 255, .92); color: var(--ink); box-shadow: 0 1px 0 var(--line), 0 10px 30px -20px rgba(6, 27, 48, .3); backdrop-filter: saturate(1.4) blur(14px); -webkit-backdrop-filter: saturate(1.4) blur(14px); }
.site-header.is-solid::before { opacity: 0; }
.site-header.is-scrolled { height: 72px; }
.header-inner { position: relative; height: 100%; display: flex; align-items: center; gap: 24px; }
.brand { display: flex; align-items: center; flex: none; }
.brand img { height: 36px; width: auto; }
.brand .logo-dark { display: none; }
.is-solid .brand .logo-dark { display: block; }
.is-solid .brand .logo-light { display: none; }

.main-nav { margin-left: auto; }
.main-nav > ul { list-style: none; display: flex; align-items: center; gap: 4px; }
.nav-link {
  position: relative; display: inline-flex; align-items: center; gap: 6px; height: 44px; padding: 0 14px;
  font-family: var(--font-head); font-weight: 600; font-size: .95rem; border-radius: 999px; transition: background-color .2s, color .2s;
}
.nav-link:hover { background: rgba(255, 255, 255, .12); }
.is-solid .nav-link:hover { background: var(--bg-soft); }
.nav-link[aria-current="page"]::after { content: ""; position: absolute; left: 14px; right: 14px; bottom: 6px; height: 2px; border-radius: 2px; background: var(--eco-400); }
.nav-link .icon { width: 14px; height: 14px; transition: transform .25s; }
.has-mega:hover .nav-link .icon, .has-mega:focus-within .nav-link .icon { transform: rotate(180deg); }

/* Mega menu */
.has-mega { position: static; }
.mega {
  position: absolute; top: calc(100% - 6px); left: 50%; width: min(980px, calc(100vw - 32px));
  transform: translate(-50%, 10px); opacity: 0; visibility: hidden; pointer-events: none;
  background: #fff; color: var(--ink); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 1px solid var(--line);
  padding: 18px; display: grid; grid-template-columns: repeat(4, 1fr) 1.1fr; gap: 10px;
  transition: opacity .25s, transform .3s var(--ease), visibility .25s;
}
.has-mega:hover .mega, .has-mega:focus-within .mega { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0); }
.mega-item { display: grid; gap: 6px; padding: 14px; border-radius: var(--radius); transition: background-color .2s; }
.mega-item:hover { background: var(--bg-soft); }
.mega-item img { height: 70px; width: 100%; object-fit: contain; margin-bottom: 4px; }
.mega-item strong { font-family: var(--font-head); font-size: 1rem; }
.mega-item span { font-size: .8rem; color: var(--muted); line-height: 1.4; }
.mega-cta { border-radius: var(--radius); padding: 18px; color: #fff; display: flex; flex-direction: column; justify-content: space-between; gap: 12px; background: linear-gradient(145deg, var(--brand-700), var(--navy)); }
.mega-cta strong { font-family: var(--font-head); font-size: 1.05rem; line-height: 1.3; }
.mega-cta .link-arrow { color: var(--eco-400); font-size: .9rem; }

.header-actions { display: flex; align-items: center; gap: 10px; }
.header-actions .btn { min-height: 44px; }

/* Language switcher */
.lang { position: relative; }
.lang-btn { display: inline-flex; align-items: center; gap: 6px; height: 44px; padding: 0 12px; border-radius: 999px; font-family: var(--font-head); font-weight: 700; font-size: .85rem; letter-spacing: .04em; border: 1.5px solid rgba(255, 255, 255, .35); transition: border-color .2s, background-color .2s; }
.lang-btn:hover { background: rgba(255, 255, 255, .12); }
.is-solid .lang-btn { border-color: var(--line); }
.is-solid .lang-btn:hover { background: var(--bg-soft); }
.lang-menu { position: absolute; right: 0; top: calc(100% + 8px); min-width: 170px; background: #fff; color: var(--ink); border-radius: var(--radius); box-shadow: var(--shadow-lg); border: 1px solid var(--line); padding: 6px; list-style: none; opacity: 0; visibility: hidden; transform: translateY(6px); transition: .2s var(--ease); }
.lang.is-open .lang-menu { opacity: 1; visibility: visible; transform: none; }
.lang-menu button { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 10px 12px; border-radius: 10px; font-weight: 600; font-size: .92rem; text-align: left; }
.lang-menu button:hover { background: var(--bg-soft); }
.lang-menu button[aria-current="true"] { color: var(--brand-600); }
.lang-menu small { font-family: var(--font-head); font-weight: 800; color: var(--muted); letter-spacing: .06em; }

.burger { display: none; width: 44px; height: 44px; border-radius: 50%; align-items: center; justify-content: center; border: 1.5px solid rgba(255, 255, 255, .35); }
.is-solid .burger { border-color: var(--line); }

/* Mobile drawer */
.drawer { position: fixed; inset: 0; z-index: 150; visibility: hidden; }
.drawer.is-open { visibility: visible; }
.drawer-backdrop { position: absolute; inset: 0; background: rgba(6, 27, 48, .55); opacity: 0; transition: opacity .3s; }
.drawer.is-open .drawer-backdrop { opacity: 1; }
.drawer-panel { position: absolute; top: 0; right: 0; bottom: 0; width: min(420px, 100%); background: #fff; color: var(--ink); display: flex; flex-direction: column; transform: translateX(100%); transition: transform .4s var(--ease); overflow-y: auto; }
.drawer.is-open .drawer-panel { transform: none; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 18px var(--gutter); border-bottom: 1px solid var(--line); }
.drawer-head img { height: 32px; width: auto; }
.drawer-close { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--bg-soft); }
.drawer-nav { list-style: none; padding: 12px var(--gutter); }
.drawer-nav a { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; border-bottom: 1px solid var(--line); font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; }
.drawer-nav a[aria-current="page"] { color: var(--brand-600); }
.drawer-series { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 12px 0 4px; }
.drawer-series a { display: block; padding: 12px; border-radius: 12px; background: var(--bg-soft); border: 0; font-size: .95rem; }
.drawer-series a small { display: block; font-family: var(--font-body); font-weight: 500; font-size: .75rem; color: var(--muted); }
.drawer-foot { margin-top: auto; padding: 20px var(--gutter) 28px; display: grid; gap: 16px; }
.lang-pills { display: flex; gap: 8px; }
.lang-pills button { flex: 1; height: 44px; border-radius: 999px; border: 1.5px solid var(--line); font-family: var(--font-head); font-weight: 700; }
.lang-pills button[aria-current="true"] { background: var(--ink); color: #fff; border-color: var(--ink); }
.drawer-contact { font-size: .9rem; color: var(--muted); display: grid; gap: 6px; }
.drawer-contact a { display: inline-flex; gap: 8px; align-items: center; }

/* ---------- Home hero ---------- */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh; display: flex; flex-direction: column; justify-content: flex-end;
  color: var(--ink); overflow: hidden; isolation: isolate;
  background: linear-gradient(180deg, #f9fbfd 0%, #eef2f6 55%, #e5e9ee 100%);
}
/* Image keeps its own aspect ratio: full height, anchored right, never zoomed.
   On wide screens the whole image is visible; on narrower ones only the empty
   left side is cropped. The left edge fades into the background. */
.hero-media { position: absolute; inset: 0 0 96px 0; z-index: -2; overflow: hidden; }
.hero-media img {
  position: absolute; bottom: 0; right: 0; height: min(100%, 36vw); width: auto; max-width: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 20%), linear-gradient(180deg, transparent 0, #000 12%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(90deg, transparent 0, #000 20%), linear-gradient(180deg, transparent 0, #000 12%);
  mask-composite: intersect;
  animation: heroIn 1.2s var(--ease) both;
}
@keyframes heroIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes kenburns { to { transform: scale(1); } }
/* Soft light veil behind the text column */
.hero::before { content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none; background:
  linear-gradient(90deg, rgba(248, 250, 252, .95) 0%, rgba(248, 250, 252, .85) 30%, rgba(248, 250, 252, .4) 48%, rgba(248, 250, 252, 0) 62%); }
/* Text block is centred vertically between the header and the stats band */
.hero-content { flex: 1; display: flex; flex-direction: column; justify-content: center; padding-top: calc(var(--header-h) + 32px); padding-bottom: 64px; }
.hero-badge { align-self: flex-start; display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px 8px 8px; border-radius: 999px; background: rgba(255, 255, 255, .8); border: 1px solid rgba(6, 27, 48, .08); box-shadow: var(--shadow-sm); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); font-size: .9rem; font-weight: 600; color: var(--ink); margin-bottom: 28px; }
.hero-badge i { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: var(--eco); color: #fff; font-style: normal; }
.hero-badge .icon { width: 16px; height: 16px; }
.hero h1 { color: var(--ink); font-size: clamp(2.4rem, 5vw, 5rem); line-height: 1.02; letter-spacing: -.035em; margin-bottom: 26px; }
.hero h1 .h1-pre { display: block; font-size: max(.36em, 1.05rem); line-height: 1.25; letter-spacing: .01em; font-weight: 700; color: var(--brand-600); margin-bottom: .35em; }
.hero h1 .grad { background: linear-gradient(95deg, #0079b8 0%, #0093d6 42%, #17a877 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-lead { max-width: 560px; font-size: clamp(1.05rem, 1.4vw, 1.25rem); line-height: 1.6; color: var(--text); margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero .btn-ghost { --btn-bg: rgba(255, 255, 255, .75); --btn-fg: var(--ink); --btn-bd: rgba(6, 27, 48, .14); }
.hero .btn-ghost:hover { --btn-bg: #fff; --btn-bd: var(--ink); }

.hero-stats { position: relative; background: var(--navy); color: #fff; }
.hero-stats .container { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 26px 24px 26px 0; }
.stat + .stat { padding-left: 24px; border-left: 1px solid rgba(255, 255, 255, .14); }
.stat strong { display: block; font-family: var(--font-head); font-weight: 800; font-size: clamp(1.5rem, 2.6vw, 2.25rem); letter-spacing: -.02em; color: #fff; line-height: 1.1; }
.stat span { font-size: .88rem; color: rgba(255, 255, 255, .72); line-height: 1.4; display: block; margin-top: 4px; }

.scroll-cue { position: absolute; left: 50%; bottom: calc(100% + 18px); transform: translateX(-50%); display: grid; justify-items: center; gap: 8px; font-size: .72rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.scroll-cue::after { content: ""; width: 1px; height: 38px; background: linear-gradient(180deg, var(--ink), transparent); animation: cue 2s ease-in-out infinite; transform-origin: top; }
@keyframes cue { 0% { transform: scaleY(0); } 50% { transform: scaleY(1); } 100% { transform: scaleY(1); opacity: 0; } }

/* Header sitting on the light home hero: dark logo & links until scrolled */
body[data-hero="light"] .site-header:not(.is-solid) { color: var(--ink); }
body[data-hero="light"] .site-header:not(.is-solid)::before { opacity: 0; }
body[data-hero="light"] .site-header:not(.is-solid) .logo-dark { display: block; }
body[data-hero="light"] .site-header:not(.is-solid) .logo-light { display: none; }
body[data-hero="light"] .site-header:not(.is-solid) .nav-link:hover { background: rgba(6, 27, 48, .06); }
body[data-hero="light"] .site-header:not(.is-solid) .lang-btn,
body[data-hero="light"] .site-header:not(.is-solid) .burger { border-color: rgba(6, 27, 48, .16); }
body[data-hero="light"] .site-header:not(.is-solid) .lang-btn:hover { background: rgba(6, 27, 48, .06); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { position: relative; min-height: 62vh; min-height: 62svh; display: flex; align-items: flex-end; color: #fff; isolation: isolate; overflow: hidden; background: var(--navy); }
.page-hero--short { min-height: 46vh; min-height: 46svh; }
.page-hero-media { position: absolute; inset: 0; z-index: -2; }
.page-hero-media img { width: 100%; height: 100%; object-fit: cover; animation: kenburns 20s var(--ease) forwards; transform: scale(1.06); }
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(3, 18, 32, .55), rgba(3, 18, 32, .25) 40%, rgba(3, 18, 32, .88)); }
.page-hero .container { padding-top: calc(var(--header-h) + 48px); padding-bottom: clamp(40px, 6vw, 80px); }
.page-hero h1 { color: #fff; font-size: clamp(2.4rem, 5.6vw, 4.8rem); letter-spacing: -.035em; margin-bottom: 16px; max-width: 16ch; text-wrap: balance; }
.page-hero p { max-width: 640px; font-size: clamp(1.02rem, 1.4vw, 1.2rem); color: rgba(255, 255, 255, .85); margin: 0; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; list-style: none; font-size: .85rem; color: rgba(255, 255, 255, .7); margin-bottom: 20px; }
.breadcrumb li + li::before { content: "/"; margin-right: 8px; opacity: .5; }
.breadcrumb a:hover { color: #fff; }

/* ---------- Intro / About teaser ---------- */
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.intro-text h2 { font-size: clamp(2rem, 4vw, 3.4rem); margin: 18px 0 24px; }
.check-list { list-style: none; display: grid; gap: 14px; margin: 28px 0 36px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; font-weight: 500; color: var(--ink); }
.check-list li i { flex: none; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: var(--eco-50); color: var(--eco); font-style: normal; }
.check-list .icon { width: 15px; height: 15px; stroke-width: 2.4; }
.intro-visual { position: relative; }
.intro-visual .frame { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 3.4; box-shadow: var(--shadow-lg); }
.intro-visual .frame img { width: 100%; height: 100%; object-fit: cover; }
.float-card { position: absolute; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-lg); padding: 18px 20px; display: flex; gap: 14px; align-items: center; max-width: 290px; }
.float-card i { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; background: var(--brand-50); color: var(--brand-600); font-style: normal; flex: none; }
.float-card strong { display: block; font-family: var(--font-head); color: var(--ink); font-size: 1.05rem; line-height: 1.25; }
.float-card span { font-size: .82rem; color: var(--muted); line-height: 1.35; display: block; }
.float-card--a { left: -28px; bottom: 36px; }
.float-card--b { right: -20px; top: 28px; }
.float-card--b i { background: var(--eco-50); color: var(--eco); }

/* ---------- Series cards ---------- */
.series-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.series-card {
  position: relative; display: flex; flex-direction: column; border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--line);
  overflow: hidden; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
}
.series-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.series-media { position: relative; aspect-ratio: 16 / 11; background: radial-gradient(120% 90% at 50% 100%, #fff 0%, var(--bg-tint) 70%); display: grid; place-items: center; padding: 22px 16px 10px; overflow: hidden; }
.series-media::after { content: ""; position: absolute; left: 12%; right: 12%; bottom: 16px; height: 16px; border-radius: 50%; background: radial-gradient(closest-side, rgba(6, 27, 48, .18), transparent); }
.series-media img { position: relative; z-index: 1; max-height: 100%; width: auto; object-fit: contain; transition: transform .6s var(--ease); }
.series-card:hover .series-media img { transform: scale(1.05); }
.series-code { position: absolute; top: 10px; left: 18px; font-family: var(--font-head); font-weight: 800; font-size: 4.2rem; line-height: 1; letter-spacing: -.05em; color: transparent; -webkit-text-stroke: 1.5px rgba(0, 121, 184, .18); }
.series-chip { position: absolute; top: 16px; right: 16px; z-index: 2; font-size: .72rem; font-weight: 700; font-family: var(--font-head); letter-spacing: .04em; text-transform: uppercase; padding: 6px 10px; border-radius: 999px; background: #fff; color: var(--brand-700); box-shadow: var(--shadow-sm); }
.series-body { display: flex; flex-direction: column; gap: 12px; padding: 22px 22px 24px; flex: 1; }
.series-body h3 { font-size: 1.45rem; margin: 0; }
.series-body p { font-size: .94rem; color: var(--muted); margin: 0; }
.series-meta { display: flex; align-items: center; gap: 8px; font-size: .85rem; font-weight: 600; color: var(--ink); padding: 10px 12px; border-radius: 12px; background: var(--eco-50); }
.series-meta .icon { color: var(--eco); width: 18px; height: 18px; }
.model-list { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; }
.model-list li { font-size: .78rem; font-weight: 700; font-family: var(--font-head); padding: 5px 10px; border-radius: 8px; border: 1px solid var(--line); color: var(--text); }
.series-actions { margin-top: auto; padding-top: 6px; display: flex; flex-wrap: wrap; gap: 8px; }
.series-actions .btn { flex: 1 1 auto; }
.series-card--placeholder .series-chip { background: var(--eco); color: #fff; }

/* ---------- Process ---------- */
.process { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.process-line { position: absolute; left: 6%; right: 6%; top: 42px; height: 2px; z-index: 0; }
.process-line svg { width: 100%; height: 12px; overflow: visible; }
.process-line line { stroke: rgba(255, 255, 255, .18); stroke-width: 2; }
.process-line line.flow { stroke: var(--eco-400); stroke-dasharray: 6 14; animation: flow 1.6s linear infinite; }
@keyframes flow { to { stroke-dashoffset: -40; } }
.step { position: relative; z-index: 1; padding: 0 8px; }
.step-icon { width: 84px; height: 84px; border-radius: 26px; display: grid; place-items: center; background: linear-gradient(145deg, #103456, #0a2540); border: 1px solid rgba(255, 255, 255, .12); color: var(--eco-400); margin-bottom: 26px; box-shadow: 0 20px 40px -20px rgba(0, 0, 0, .6); position: relative; }
.step-icon .icon { width: 34px; height: 34px; stroke-width: 1.5; }
.step-icon::after { counter-increment: step; content: "0" counter(step); position: absolute; top: -10px; right: -12px; font-family: var(--font-head); font-weight: 800; font-size: .75rem; background: var(--brand); color: #fff; padding: 4px 8px; border-radius: 999px; }
.step h3 { font-size: 1.3rem; margin-bottom: 10px; }
.step p { font-size: .95rem; color: #9fb3c8; margin: 0; }

/* ---------- Sustainability ---------- */
.eco { position: relative; color: #fff; isolation: isolate; overflow: hidden; background: #062316; }
.eco-bg { position: absolute; inset: 0; z-index: -2; }
.eco-bg img { width: 100%; height: 100%; object-fit: cover; }
.eco::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(100deg, rgba(3, 26, 18, .94) 0%, rgba(3, 26, 18, .82) 45%, rgba(3, 26, 18, .45) 100%); }
.eco h2 { color: #fff; }
.eco .section-head p { color: rgba(255, 255, 255, .8); }
.eco .eyebrow { color: var(--eco-400); }
.eco-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.eco-card { padding: 28px 24px; border-radius: var(--radius-lg); background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .14); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); transition: background-color .3s, transform .4s var(--ease); }
.eco-card:hover { background: rgba(255, 255, 255, .12); transform: translateY(-4px); }
.eco-card i { width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center; background: rgba(60, 201, 139, .16); color: var(--eco-400); font-style: normal; margin-bottom: 22px; }
.eco-card .icon { width: 26px; height: 26px; }
.eco-card h3 { color: #fff; font-size: 1.15rem; margin-bottom: 10px; }
.eco-card p { font-size: .92rem; color: rgba(255, 255, 255, .75); margin: 0; }
.eco-quote { margin-top: clamp(40px, 5vw, 64px); display: flex; gap: 20px; align-items: center; max-width: 820px; font-family: var(--font-head); font-weight: 600; font-size: clamp(1.1rem, 1.8vw, 1.45rem); line-height: 1.45; color: #fff; }
.eco-quote::before { content: ""; flex: none; width: 4px; align-self: stretch; border-radius: 4px; background: linear-gradient(var(--eco-400), var(--brand)); }

/* ---------- Applications ---------- */
.apps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.app-tile { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3 / 4; color: #fff; isolation: isolate; display: flex; align-items: flex-end; }
.app-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .8s var(--ease); }
.app-tile::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, transparent 40%, rgba(3, 18, 32, .85)); }
.app-tile:hover img { transform: scale(1.06); }
.app-tile div { padding: 22px; }
.app-tile h3 { color: #fff; font-size: 1.25rem; margin-bottom: 4px; }
.app-tile p { font-size: .88rem; color: rgba(255, 255, 255, .78); margin: 0; }
.app-tile .tag { display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; background: rgba(255, 255, 255, .18); backdrop-filter: blur(6px); margin-bottom: 10px; }

/* ---------- Hygiene ---------- */
.hyg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.hyg-card { position: relative; padding: 30px 26px; border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--line); overflow: hidden; }
.hyg-card .level { font-family: var(--font-head); font-weight: 800; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--brand-600); }
.hyg-card h3 { font-size: 1.6rem; margin: 10px 0 6px; }
.hyg-card p { margin: 0; color: var(--muted); }
.hyg-bar { display: flex; gap: 6px; margin-top: 24px; }
.hyg-bar span { flex: 1; height: 6px; border-radius: 6px; background: var(--line); }
.hyg-bar span.on { background: linear-gradient(90deg, var(--brand), var(--eco)); }

/* ---------- News cards ---------- */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-card { display: flex; flex-direction: column; border-radius: var(--radius-lg); overflow: hidden; background: #fff; border: 1px solid var(--line); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.news-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-soft); }
.news-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.news-card:hover .news-media img { transform: scale(1.05); }
.news-type { position: absolute; top: 14px; left: 14px; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 6px 12px; border-radius: 999px; background: rgba(255, 255, 255, .92); color: var(--ink); }
.news-type--blog { background: var(--eco); color: #fff; }
.news-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.news-meta { display: flex; gap: 14px; flex-wrap: wrap; font-size: .82rem; color: var(--muted); }
.news-meta span { display: inline-flex; align-items: center; gap: 6px; }
.news-meta .icon { width: 15px; height: 15px; }
.news-body h3 { font-size: 1.25rem; margin: 0; line-height: 1.3; }
.news-body p { font-size: .94rem; color: var(--muted); margin: 0; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.news-body .link-arrow { margin-top: auto; padding-top: 6px; font-size: .92rem; }

.news-featured { display: grid; grid-template-columns: 1.25fr 1fr; border-radius: var(--radius-lg); overflow: hidden; background: #fff; border: 1px solid var(--line); margin-bottom: 32px; transition: box-shadow .4s var(--ease); }
.news-featured:hover { box-shadow: var(--shadow-lg); }
.news-featured .news-media { aspect-ratio: auto; min-height: 380px; }
.news-featured .news-body { padding: clamp(28px, 4vw, 52px); justify-content: center; gap: 16px; }
.news-featured h3 { font-size: clamp(1.5rem, 2.6vw, 2.2rem); }
.news-featured .news-body p { -webkit-line-clamp: 4; font-size: 1.02rem; }

.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.filter-bar button { height: 42px; padding: 0 18px; border-radius: 999px; border: 1.5px solid var(--line); font-family: var(--font-head); font-weight: 700; font-size: .9rem; transition: .2s; }
.filter-bar button:hover { border-color: var(--ink); }
.filter-bar button[aria-pressed="true"] { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ---------- Catalog CTA ---------- */
.catalog-cta { position: relative; display: grid; grid-template-columns: 1fr auto; gap: clamp(32px, 5vw, 80px); align-items: center; padding: clamp(32px, 5vw, 64px); border-radius: var(--radius-lg); background: linear-gradient(125deg, var(--brand-700) 0%, var(--brand) 55%, #25b9d8 100%); color: #fff; overflow: hidden; isolation: isolate; }
.catalog-cta::before { content: ""; position: absolute; width: 520px; height: 520px; right: -140px; top: -220px; border-radius: 50%; background: radial-gradient(closest-side, rgba(111, 227, 172, .45), transparent); z-index: -1; }
.catalog-cta h2 { color: #fff; font-size: clamp(1.9rem, 3.6vw, 3rem); margin: 14px 0 16px; }
.catalog-cta p { color: rgba(255, 255, 255, .88); max-width: 560px; }
.catalog-cta .eyebrow { color: #fff; }
.catalog-cta .eyebrow::before { background: #6fe3ac; }
.edition-list { display: grid; gap: 10px; margin-top: 28px; max-width: 620px; }
.edition { display: flex; align-items: center; gap: 12px; padding: 12px 12px 12px 18px; border-radius: 16px; background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .22); backdrop-filter: blur(6px); }
.edition strong { font-family: var(--font-head); flex: 1; font-size: .98rem; }
.edition .btn { min-height: 40px; padding: 0 14px; font-size: .85rem; }
.catalog-book { width: clamp(180px, 22vw, 290px); aspect-ratio: 910 / 1287; border-radius: 6px 16px 16px 6px; overflow: hidden; transform: perspective(1200px) rotateY(-16deg) rotateX(4deg); box-shadow: -2px 0 0 rgba(0, 0, 0, .1) inset, 30px 40px 60px -20px rgba(0, 0, 0, .45); transition: transform .6s var(--ease); }
.catalog-book:hover { transform: perspective(1200px) rotateY(-4deg) rotateX(0); }
.catalog-book img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- CTA band + Footer ---------- */
.cta-band { position: relative; background: var(--navy); color: #fff; overflow: hidden; isolation: isolate; }
.cta-band::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(60% 120% at 100% 0%, rgba(0, 147, 214, .35), transparent 60%), radial-gradient(50% 100% at 0% 100%, rgba(31, 169, 113, .25), transparent 60%); }
.cta-band .container { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding-block: clamp(56px, 7vw, 96px); flex-wrap: wrap; }
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.9rem); margin: 0 0 10px; max-width: 18ch; }
.cta-band p { margin: 0; color: #9fb3c8; max-width: 560px; }
.cta-band .actions { display: flex; flex-wrap: wrap; gap: 12px; }

.site-footer { background: #041425; color: #8fa4ba; font-size: .94rem; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.3fr; gap: 40px; padding-block: 72px 48px; }
.footer-brand img { height: 38px; width: auto; margin-bottom: 20px; }
.footer-brand p { max-width: 320px; }
.site-footer h4 { color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 18px; }
.footer-links { list-style: none; display: grid; gap: 10px; }
.footer-links a { transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-contact { display: grid; gap: 14px; list-style: none; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact .icon { color: var(--eco-400); margin-top: 3px; }
.footer-contact a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .08); }
.footer-bottom .container { display: flex; flex-wrap: wrap; gap: 12px 24px; align-items: center; justify-content: space-between; padding-block: 24px; font-size: .85rem; }
.footer-langs { display: flex; gap: 6px; }
.footer-langs button { padding: 6px 12px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, .15); font-weight: 700; font-size: .78rem; font-family: var(--font-head); color: #b9c8d8; }
.footer-langs button[aria-current="true"] { background: #fff; color: var(--ink); }

/* ---------- Products page ---------- */
.series-nav { position: sticky; top: 72px; z-index: 40; background: rgba(255, 255, 255, .92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.series-nav .container { display: flex; gap: 6px; overflow-x: auto; padding-block: 12px; scrollbar-width: none; }
.series-nav .container::-webkit-scrollbar { display: none; }
.series-nav a { flex: none; display: inline-flex; align-items: center; gap: 8px; height: 42px; padding: 0 16px; border-radius: 999px; font-family: var(--font-head); font-weight: 700; font-size: .9rem; border: 1.5px solid var(--line); transition: .2s; }
.series-nav a b { color: var(--brand-600); }
.series-nav a:hover, .series-nav a.is-active { background: var(--ink); color: #fff; border-color: var(--ink); }
.series-nav a.is-active b, .series-nav a:hover b { color: var(--eco-400); }

.series-row { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: center; padding-block: clamp(56px, 7vw, 104px); border-bottom: 1px solid var(--line); scroll-margin-top: 140px; }
.series-row:last-child { border-bottom: 0; }
.series-row:nth-child(even) .series-row-media { order: 2; }
.series-row-media { position: relative; border-radius: var(--radius-lg); background: radial-gradient(120% 100% at 50% 100%, #fff 0%, var(--bg-tint) 75%); aspect-ratio: 5 / 4; display: grid; place-items: center; padding: 8% 6%; overflow: hidden; }
.series-row-media .machine { position: relative; z-index: 1; width: 100%; max-width: 560px; }
.series-row-media .series-code { font-size: clamp(6rem, 12vw, 10rem); top: 18px; left: 26px; -webkit-text-stroke-width: 2px; }
.series-row-media .product-pic { position: absolute; right: 20px; bottom: 20px; z-index: 2; width: 34%; max-width: 190px; border-radius: 16px; overflow: hidden; border: 4px solid #fff; box-shadow: var(--shadow); background: #fff; }
.series-row-media .product-pic img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.series-row h2 { font-size: clamp(2rem, 3.8vw, 3.2rem); margin: 14px 0 6px; }
.series-row .sub { font-family: var(--font-head); font-weight: 700; color: var(--brand-600); font-size: 1.05rem; margin-bottom: 18px; }
.series-row .desc { color: var(--muted); font-size: 1.05rem; }
.kv { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 26px 0; }
.kv div { padding: 16px 18px; border-radius: 16px; background: var(--bg-soft); }
.kv small { display: block; font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.kv strong { font-family: var(--font-head); color: var(--ink); font-size: 1.05rem; line-height: 1.35; display: block; }
.series-row .model-list { margin-bottom: 28px; }
.series-row .model-list li { font-size: .88rem; padding: 7px 14px; border-radius: 10px; background: #fff; }
.row-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.note { display: flex; gap: 12px; align-items: flex-start; padding: 16px 18px; border-radius: 16px; background: var(--brand-50); color: var(--brand-700); font-size: .92rem; margin-top: 22px; }
.note .icon { margin-top: 2px; }

.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.feature { padding: 28px 24px; border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--line); }
.feature i { width: 50px; height: 50px; border-radius: 15px; display: grid; place-items: center; background: var(--brand-50); color: var(--brand-600); font-style: normal; margin-bottom: 20px; }
.feature .icon { width: 24px; height: 24px; }
.feature h3 { font-size: 1.1rem; margin-bottom: 8px; }
.feature p { margin: 0; font-size: .92rem; color: var(--muted); }

.label-block { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.label-block .frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.label-block .frame img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.pill-list { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin-top: 24px; }
.pill-list li { padding: 9px 16px; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-weight: 600; font-size: .9rem; color: var(--ink); }
.material-strip { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.material-strip span { font-family: var(--font-head); font-weight: 800; font-size: .9rem; padding: 10px 16px; border-radius: 12px; background: var(--navy); color: #fff; }
.material-strip span.eco-mat { background: var(--eco); }

/* ---------- About page ---------- */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.mv-card { padding: clamp(28px, 4vw, 48px); border-radius: var(--radius-lg); background: var(--bg-soft); position: relative; overflow: hidden; }
.mv-card--dark { background: var(--navy); color: #b9c8d8; }
.mv-card--dark h3 { color: #fff; }
.mv-card i { width: 56px; height: 56px; border-radius: 18px; display: grid; place-items: center; background: #fff; color: var(--brand-600); font-style: normal; margin-bottom: 26px; box-shadow: var(--shadow-sm); }
.mv-card--dark i { background: rgba(255, 255, 255, .08); color: var(--eco-400); box-shadow: none; }
.mv-card .icon { width: 26px; height: 26px; }
.mv-card h3 { font-size: clamp(1.4rem, 2.2vw, 1.8rem); }
.mv-card p { margin: 0; font-size: 1.05rem; line-height: 1.7; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.value { padding: 28px; border-radius: var(--radius-lg); border: 1px solid var(--line); background: #fff; transition: border-color .3s, transform .4s var(--ease); }
.value:hover { border-color: var(--brand); transform: translateY(-4px); }
.value .num { font-family: var(--font-head); font-weight: 800; color: var(--eco); font-size: .85rem; letter-spacing: .1em; }
.value h3 { font-size: 1.2rem; margin: 12px 0 8px; }
.value p { margin: 0; font-size: .94rem; color: var(--muted); }

.facility { display: grid; grid-template-columns: 1.2fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.facility .frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.facility .frame img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }

.timeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; position: relative; }
.timeline::before { content: ""; position: absolute; left: 0; right: 0; top: 23px; height: 2px; background: linear-gradient(90deg, var(--brand), var(--eco)); opacity: .35; }
.tl-step { position: relative; }
.tl-step .dot { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; background: #fff; border: 2px solid var(--brand); color: var(--brand-600); margin-bottom: 20px; font-family: var(--font-head); font-weight: 800; }
.tl-step h3 { font-size: 1.1rem; margin-bottom: 6px; }
.tl-step p { font-size: .92rem; color: var(--muted); margin: 0; }

.numbers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.number { padding: 28px 24px; border-radius: var(--radius-lg); background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1); }
.number strong { display: block; font-family: var(--font-head); font-weight: 800; font-size: clamp(2rem, 3.6vw, 3rem); color: #fff; letter-spacing: -.03em; line-height: 1.05; }
.number span { display: block; margin-top: 8px; font-size: .92rem; }

/* ---------- Article ---------- */
.article-hero .container { max-width: 980px; }
.article-hero h1 { max-width: none; font-size: clamp(2rem, 4.6vw, 3.6rem); }
.article-meta { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 20px; color: rgba(255, 255, 255, .8); font-size: .92rem; }
.article-meta span { display: inline-flex; align-items: center; gap: 8px; }
.article-wrap { display: grid; grid-template-columns: minmax(0, 720px) 260px; gap: 64px; justify-content: center; }
.prose { font-size: 1.1rem; line-height: 1.8; color: #2b3d50; }
.prose > p:first-child { font-size: 1.25rem; line-height: 1.65; color: var(--ink); }
.prose h3 { font-size: 1.6rem; margin: 1.8em 0 .6em; }
.prose ul { padding-left: 0; list-style: none; margin: 0 0 1.4em; display: grid; gap: 10px; }
.prose li { position: relative; padding-left: 28px; }
.prose li::before { content: ""; position: absolute; left: 4px; top: .7em; width: 10px; height: 10px; border-radius: 3px; background: var(--eco); transform: rotate(45deg); }
.prose strong { color: var(--ink); }
.prose blockquote { margin: 2em 0; padding: 24px 28px; border-radius: 18px; background: var(--eco-50); color: #0d4a31; font-family: var(--font-head); font-weight: 600; font-size: 1.3rem; line-height: 1.5; border-left: 4px solid var(--eco); }
.article-aside { position: sticky; top: 110px; align-self: start; display: grid; gap: 16px; }
.aside-card { padding: 22px; border-radius: var(--radius); background: var(--bg-soft); }
.aside-card h4 { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.share { display: flex; gap: 8px; }
.share a, .share button { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: #fff; border: 1px solid var(--line); transition: .2s; }
.share a:hover, .share button:hover { border-color: var(--ink); }
.aside-card--cta { background: var(--navy); color: #b9c8d8; }
.aside-card--cta h4 { color: var(--eco-400); }
.aside-card--cta p { font-size: .92rem; }
.toast { position: fixed; left: 50%; bottom: 24px; transform: translate(-50%, 20px); opacity: 0; z-index: 300; background: var(--ink); color: #fff; padding: 12px 18px; border-radius: 12px; font-weight: 600; font-size: .9rem; transition: .3s var(--ease); pointer-events: none; }
.toast.is-on { opacity: 1; transform: translate(-50%, 0); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.info-cards { display: grid; gap: 14px; }
.info-card { display: flex; gap: 18px; padding: 22px; border-radius: var(--radius); background: var(--bg-soft); border: 1px solid transparent; transition: border-color .2s, background-color .2s; }
a.info-card:hover { border-color: var(--brand); background: #fff; }
.info-card i { width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center; background: #fff; color: var(--brand-600); font-style: normal; flex: none; box-shadow: var(--shadow-sm); }
.info-card small { display: block; font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.info-card strong { display: block; font-family: var(--font-head); color: var(--ink); font-size: 1.08rem; line-height: 1.45; margin-top: 2px; }

.form-card { padding: clamp(24px, 4vw, 44px); border-radius: var(--radius-lg); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); }
.form-card h2 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); margin-bottom: 8px; }
.form-card > p { color: var(--muted); margin-bottom: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .85rem; font-weight: 600; color: var(--ink); }
.field label .req { color: var(--red); }
.field input, .field select, .field textarea { width: 100%; min-height: 50px; padding: 12px 16px; border-radius: 14px; border: 1.5px solid var(--line); background: var(--bg-soft); transition: border-color .2s, background-color .2s, box-shadow .2s; font-size: 1rem; }
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--brand); background: #fff; box-shadow: 0 0 0 4px rgba(0, 147, 214, .12); }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--red); background: #fff5f6; }
.field .err { font-size: .8rem; color: var(--red); display: none; }
.field.has-error .err { display: block; }
.series-pick { display: flex; flex-wrap: wrap; gap: 8px; }
.series-pick label { cursor: pointer; position: relative; }
.series-pick input, .field .series-pick input { position: absolute; left: 0; top: 0; width: 1px; height: 1px; min-height: 0; padding: 0; opacity: 0; pointer-events: none; }
.series-pick span { display: inline-flex; align-items: center; height: 42px; padding: 0 16px; border-radius: 999px; border: 1.5px solid var(--line); font-family: var(--font-head); font-weight: 700; font-size: .9rem; transition: .2s; }
.series-pick input:checked + span { background: var(--ink); color: #fff; border-color: var(--ink); }
.series-pick input:focus-visible + span { outline: 3px solid var(--eco-400); outline-offset: 2px; }
.consent { display: flex; gap: 12px; align-items: flex-start; font-size: .88rem; color: var(--muted); cursor: pointer; }
.consent input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--brand); flex: none; }
.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; justify-content: space-between; margin-top: 8px; }
.form-success { display: none; text-align: center; padding: 40px 10px; }
.form-success i { width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 20px; display: grid; place-items: center; background: var(--eco-50); color: var(--eco); font-style: normal; }
.form-success .icon { width: 34px; height: 34px; stroke-width: 2.4; }
.form-card.is-sent form { display: none; }
.form-card.is-sent .form-success { display: block; }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); height: clamp(320px, 42vw, 480px); background: var(--bg-soft); position: relative; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: saturate(.9); }
.map-card { position: absolute; left: 20px; bottom: 20px; background: #fff; padding: 18px 20px; border-radius: 16px; box-shadow: var(--shadow-lg); max-width: 320px; }
.map-card strong { font-family: var(--font-head); color: var(--ink); display: block; margin-bottom: 4px; }
.map-card p { margin: 0 0 10px; font-size: .9rem; }

/* ---------- Catalog viewer ---------- */
.viewer-page { background: #0b1a2b; color: #cfdbe7; }
.viewer-page .site-footer, .viewer-page .cta-band { display: none; }
.viewer { min-height: 100vh; min-height: 100svh; padding-top: var(--header-h); display: grid; grid-template-rows: auto 1fr auto; grid-template-columns: minmax(0, 1fr); }
.viewer-bar { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 16px; padding: 14px var(--gutter); border-bottom: 1px solid rgba(255, 255, 255, .08); background: #0e2135; }
.viewer-title { display: flex; align-items: center; gap: 12px; margin-right: auto; }
.viewer-title h1 { color: #fff; font-size: 1.15rem; margin: 0; letter-spacing: -.01em; }
.viewer-title small { display: block; color: #8fa4ba; font-size: .8rem; }
.viewer-select { height: 40px; padding: 0 36px 0 14px; border-radius: 999px; background: rgba(255, 255, 255, .06) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23cfdbe7' stroke-width='2'%3E%3Cpath d='m2 4 4 4 4-4'/%3E%3C/svg%3E") no-repeat right 14px center; border: 1px solid rgba(255, 255, 255, .15); color: #fff; appearance: none; -webkit-appearance: none; font-weight: 600; font-size: .9rem; }
.viewer-select option { color: var(--ink); }
.jump { display: flex; gap: 6px; flex-wrap: wrap; }
.jump button { height: 40px; padding: 0 14px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, .15); font-family: var(--font-head); font-weight: 800; font-size: .85rem; color: #cfdbe7; transition: .2s; }
.jump button:hover { border-color: #fff; color: #fff; }
.jump button.is-active { background: var(--brand); border-color: var(--brand); color: #fff; }
.viewer-tools { display: flex; gap: 6px; }
.tool { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; border: 1px solid rgba(255, 255, 255, .15); color: #fff; transition: .2s; }
.tool:hover { background: rgba(255, 255, 255, .1); }
.viewer-stage { position: relative; overflow: hidden; display: grid; place-items: center; padding: clamp(12px, 3vw, 40px) clamp(56px, 7vw, 96px); touch-action: pan-y; min-height: 0; }
.viewer-stage.is-zoomed { overflow: auto; place-items: start; cursor: grab; touch-action: auto; padding: 16px; }
.viewer-stage.is-zoomed.is-dragging { cursor: grabbing; }
.page-frame { position: relative; box-shadow: 0 30px 80px -20px rgba(0, 0, 0, .7); background: #fff; border-radius: 4px; overflow: hidden; max-width: 100%; max-height: 100%; aspect-ratio: 1190 / 842; width: min(100%, calc((100svh - 260px) * 1.414)); transition: opacity .25s; }
.page-frame img { width: 100%; height: 100%; object-fit: cover; user-select: none; -webkit-user-drag: none; }
.page-frame.is-loading { opacity: .35; }
.page-frame.is-single { aspect-ratio: 595 / 842; width: min(100%, calc((100svh - 250px) * .707)); }
.page-frame.is-single img { width: 200%; max-width: none; object-fit: cover; }
.page-frame.is-single.is-right img { transform: translateX(-50%); }
.viewer-stage.is-zoomed .page-frame { width: 200%; max-width: none; max-height: none; }
.viewer-stage.is-zoomed .page-frame.is-single { width: 160%; }
.nav-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; background: rgba(255, 255, 255, .1); color: #fff; border: 1px solid rgba(255, 255, 255, .18); backdrop-filter: blur(8px); z-index: 3; transition: .2s; }
.nav-arrow:hover { background: #fff; color: var(--ink); }
.nav-arrow:disabled { opacity: .25; pointer-events: none; }
.nav-arrow--prev { left: clamp(8px, 2vw, 24px); }
.nav-arrow--next { right: clamp(8px, 2vw, 24px); }
.viewer-stage.is-zoomed ~ .nav-arrow { display: none; }
.viewer-notice { position: absolute; top: 16px; left: 50%; transform: translateX(-50%); z-index: 4; display: flex; gap: 12px; align-items: center; padding: 12px 16px; border-radius: 14px; background: var(--eco); color: #fff; font-size: .9rem; font-weight: 600; box-shadow: var(--shadow-lg); max-width: calc(100% - 32px); }
.viewer-notice a { text-decoration: underline; white-space: nowrap; }
.viewer-notice button { width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center; background: rgba(255, 255, 255, .2); flex: none; }
.viewer-foot { display: flex; align-items: center; gap: 16px; padding: 12px var(--gutter) 16px; border-top: 1px solid rgba(255, 255, 255, .08); background: #0e2135; }
.page-count { font-family: var(--font-head); font-weight: 700; font-size: .9rem; color: #fff; white-space: nowrap; min-width: 70px; }
.thumbs { display: flex; gap: 8px; overflow-x: auto; flex: 1; padding: 4px 2px; scrollbar-width: thin; scrollbar-color: rgba(255, 255, 255, .2) transparent; }
.thumbs button { flex: none; width: 96px; aspect-ratio: 1190 / 842; border-radius: 4px; overflow: hidden; opacity: .5; border: 2px solid transparent; transition: .2s; }
.thumbs button:hover { opacity: .85; }
.thumbs button.is-active { opacity: 1; border-color: var(--brand); }
.thumbs img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Reveal animation ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); transition-delay: var(--d, 0s); }
.js [data-reveal].is-visible { opacity: 1; transform: none; }

/* ---------- Page-specific additions ---------- */
.section-head > div { display: grid; gap: 18px; justify-items: start; }
.section-head--center > div { justify-items: center; }
.pt-0 { padding-top: 0; }

.page-hero--machine { background: radial-gradient(80% 90% at 85% 70%, #0d4f80 0%, #08304f 45%, var(--navy) 100%); }
.page-hero--machine::before { background: linear-gradient(90deg, rgba(6, 27, 48, .92) 0%, rgba(6, 27, 48, .55) 45%, rgba(6, 27, 48, 0) 75%); }
.page-hero--machine .page-hero-media { display: flex; align-items: center; justify-content: flex-end; padding: calc(var(--header-h) + 20px) clamp(8px, 4vw, 64px) 40px 30%; }
.page-hero--machine .page-hero-media img { width: auto; max-width: 100%; height: auto; max-height: 90%; object-fit: contain; filter: drop-shadow(0 40px 40px rgba(0, 0, 0, .45)); transform: none; animation: floatIn 1.2s var(--ease) both; }
@keyframes floatIn { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: none; } }

.intro-visual .series-row-media { box-shadow: none; }

.viewer-body { position: relative; min-height: 0; display: grid; }
.viewer-notice[hidden] { display: none; }

.form-lead { color: var(--muted); margin-bottom: 28px; }
.fieldset { border: 0; padding: 0; margin: 0; min-width: 0; }
.fieldset legend { font-size: .85rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; padding: 0; }
.form-actions { margin-top: 24px; }
.muted { color: var(--muted); }
.req { color: var(--red); }
.form-success p { color: var(--muted); max-width: 420px; margin: 0 auto 24px; }

@media (max-width: 960px) {
  .page-hero--machine .page-hero-media { padding: calc(var(--header-h) + 10px) 16px 45% 16px; align-items: flex-start; justify-content: center; opacity: .5; }
}

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; }
.center { text-align: center; }
.stack-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.more-row { display: flex; justify-content: center; margin-top: 48px; }
.empty { padding: 48px; text-align: center; color: var(--muted); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1180px) {
  .main-nav, .header-actions .btn-cta { display: none; }
  .burger { display: inline-flex; }
  .header-actions { margin-left: auto; }
  .series-grid { grid-template-columns: repeat(2, 1fr); }
  .eco-grid, .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .article-wrap { grid-template-columns: 1fr; }
  .article-aside { position: static; grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: repeat(3, 1fr); row-gap: 36px; }
  .timeline::before { display: none; }
}

@media (max-width: 960px) {
  .section-head--split { grid-template-columns: 1fr; }
  .intro-grid, .label-block, .facility, .contact-grid { grid-template-columns: 1fr; }
  .float-card--a { left: 12px; }
  .float-card--b { right: 12px; }
  .process { grid-template-columns: 1fr 1fr; row-gap: 40px; }
  .process-line { display: none; }
  .apps-grid { grid-template-columns: repeat(2, 1fr); }
  .hyg-grid, .news-grid { grid-template-columns: 1fr 1fr; }
  .news-featured { grid-template-columns: 1fr; }
  .news-featured .news-media { min-height: 0; aspect-ratio: 16 / 9; }
  .catalog-cta { grid-template-columns: 1fr; }
  .catalog-book { display: none; }
  .series-row { grid-template-columns: 1fr; }
  .series-row:nth-child(even) .series-row-media { order: 0; }
  .mv-grid, .values-grid { grid-template-columns: 1fr 1fr; }
  .numbers { grid-template-columns: 1fr 1fr; }
  .hero-stats .container { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(3) { padding-left: 0; border-left: 0; }
  .stat:nth-child(n+3) { border-top: 1px solid rgba(255, 255, 255, .14); }
  .mega { display: none; }
}

@media (max-width: 640px) {
  :root { --header-h: 70px; }
  .brand img { height: 30px; }
  .header-actions .lang { display: none; }
  .site-header.is-scrolled { height: 64px; }
  .series-grid, .eco-grid, .feature-grid, .hyg-grid, .news-grid, .mv-grid, .values-grid, .form-grid, .kv { grid-template-columns: 1fr; }
  .apps-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .app-tile { aspect-ratio: 3 / 4.2; }
  .app-tile div { padding: 14px; }
  .app-tile h3 { font-size: 1.02rem; }
  .app-tile p { display: none; }
  .process { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; padding-block: 56px 32px; }
  .hero-content { padding-top: calc(var(--header-h) + 32px); padding-bottom: 28px; }
  .hero h1 { font-size: clamp(2.2rem, 10.6vw, 3.2rem); }
  .hero h1 .h1-pre { font-size: 1.05rem; }
  .hero-actions .btn { flex: 1 1 100%; }
  .stat { padding: 18px 12px 18px 0; }
  .stat + .stat { padding-left: 12px; }
  .stat:nth-child(3) { padding-left: 0; }
  .stat span { font-size: .78rem; }
  .scroll-cue { display: none; }
  .float-card { position: static; margin-top: 12px; max-width: none; }
  .intro-visual .frame { aspect-ratio: 4 / 3; }
  .edition { flex-wrap: wrap; }
  .edition strong { flex-basis: 100%; }
  .article-aside { grid-template-columns: 1fr; }
  .map-card { position: static; max-width: none; border-radius: 0; box-shadow: none; border-top: 1px solid var(--line); }
  .map-wrap { height: auto; }
  .map-wrap iframe { height: 300px; }
  .series-row-media .product-pic { width: 30%; right: 12px; bottom: 12px; border-width: 3px; }
  .cta-band .actions { width: 100%; }
  .cta-band .actions .btn { flex: 1; }
  .viewer-bar { gap: 10px; }
  .viewer-title { width: 100%; }
  .viewer-stage { padding: 12px 8px 64px; }
  .nav-arrow { top: auto; bottom: 8px; transform: none; width: 46px; height: 46px; }
  .nav-arrow--prev { left: calc(50% - 56px); }
  .nav-arrow--next { right: calc(50% - 56px); }
  .page-frame.is-single { width: min(100%, calc((100svh - 330px) * .707)); }
  .thumbs button { width: 72px; }
}

/* The scroll cue sits over the product image on narrower desktops */
@media (max-width: 1280px) { .scroll-cue { display: none; } }

/* Phones & portrait screens: text first, full product image below it */
@media (max-width: 640px), (max-aspect-ratio: 1/1) {
  .hero { min-height: 0; justify-content: flex-start; }
  .hero::before { display: none; }
  .hero-content { order: 1; padding-bottom: 8px; }
  .hero-media { order: 2; position: relative; inset: auto; height: clamp(230px, 62vw, 480px); }
  .hero-media img { inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 72% 55%;
    -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 22%); mask-image: linear-gradient(180deg, transparent 0, #000 22%);
    -webkit-mask-composite: source-over; mask-composite: add; }
  .hero-stats { order: 3; }
  .scroll-cue { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
}
