:root {
  --navy: #142979;
  --navy-deep: #09184d;
  --orange: #ff671f;
  --orange-dark: #d94c0c;
  --water: #dff5fa;
  --ice: #f2f8fa;
  --mist: #edf1f3;
  --ink: #101828;
  --slate: #475467;
  --line: #d7dfe3;
  --white: #fff;
  --max: 1320px;
  --gutter: clamp(20px, 4vw, 64px);
  --shadow: 0 24px 70px rgba(9, 24, 77, .12);
  --header-h: 64px;
  --concept-h: 32px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; padding-bottom: var(--concept-h); background: var(--white); color: var(--ink); font-family: "Manrope", Arial, sans-serif; font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.skip-link { position: fixed; z-index: 1000; left: 16px; top: 12px; padding: 10px 16px; background: var(--white); color: var(--navy); transform: translateY(-150%); transition: transform .2s; }
.skip-link:focus { transform: translateY(0); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }

.concept-bar { width: 100%; height: var(--concept-h); padding: 5px var(--gutter); position: fixed; z-index: 400; left: 0; right: 0; bottom: 0; display: flex; justify-content: center; align-items: center; background: var(--navy-deep); color: var(--white); font-size: 12px; font-weight: 700; letter-spacing: 0; }
.concept-bar span { position: relative; padding-left: 18px; }
.concept-bar span::before { content: ""; width: 7px; height: 7px; position: absolute; left: 0; top: 50%; border-radius: 50%; background: var(--orange); transform: translateY(-50%); }
.site-header { height: var(--header-h); padding: 5px var(--gutter); display: grid; grid-template-columns: 102px 1fr; align-items: center; gap: 24px; background: rgba(255,255,255,.97); border-bottom: 1px solid rgba(20,41,121,.11); position: relative; z-index: 100; }
.site-header-light { background: var(--white); }
.brand { width: 86px; height: 50px; display: flex; align-items: center; }
.brand img { width: 82px; height: auto; }
.site-nav { display: flex; justify-content: flex-end; align-items: center; gap: clamp(18px, 2.2vw, 36px); }
.site-nav > a:not(.nav-cta) { position: relative; padding: 12px 0; color: var(--slate); font-size: 11px; font-weight: 700; letter-spacing: .03em; }
.site-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 8px; height: 2px; background: var(--orange); transition: right .2s ease; }
.site-nav > a:hover::after, .site-nav > a.is-current::after { right: 0; }
.site-nav > a.is-current { color: var(--navy); }
.nav-cta { min-height: 42px; padding: 9px 15px; display: inline-flex; align-items: center; gap: 17px; background: var(--navy); color: var(--white); font-size: 11px; font-weight: 800; }
.menu-toggle { display: none; }
.language-switcher { min-height: 44px; display: inline-flex; align-items: center; gap: 3px; padding: 3px; border: 1px solid var(--line); border-radius: 999px; }
.language-switcher button { min-width: 34px; min-height: 34px; padding: 6px 8px; display: inline-flex; align-items: center; justify-content: center; border: 0; border-radius: 999px; background: transparent; color: var(--slate); font: inherit; font-size: 10px; font-weight: 800; line-height: 1; cursor: pointer; }
.language-switcher button[aria-pressed="true"] { background: var(--navy); color: var(--white); }

.eyebrow { margin: 0 0 18px; color: var(--orange-dark); font-size: 11px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.hero { height: calc(100svh - var(--header-h) - var(--concept-h)); padding: clamp(26px, 5vh, 62px) var(--gutter); display: grid; grid-template-columns: minmax(0, .98fr) minmax(380px, .82fr); align-items: center; gap: clamp(32px, 6vw, 88px); overflow: hidden; background: linear-gradient(125deg, #f7fbfc 0%, #edf8fa 52%, #d9f0f4 100%); }
.hero-copy { max-width: 760px; position: relative; z-index: 2; }
.hero h1 { margin: 0; color: var(--navy-deep); font-size: clamp(44px, 5.4vw, 78px); font-weight: 700; letter-spacing: -.055em; line-height: .98; }
.hero h1 em { color: inherit; font-style: normal; }
.hero-lead { max-width: 650px; margin: clamp(16px, 3vh, 26px) 0 0; color: var(--slate); font-size: clamp(15px, 1.25vw, 19px); line-height: 1.6; }
.hero-actions { margin-top: clamp(20px, 3.6vh, 34px); display: flex; flex-wrap: wrap; align-items: center; gap: 18px 26px; }
.button { min-height: 54px; width: fit-content; padding: 13px 21px; display: inline-flex; align-items: center; justify-content: center; gap: 26px; border: 1px solid transparent; color: var(--navy); font-size: 12px; font-weight: 800; letter-spacing: .035em; transition: color .2s, background .2s, border-color .2s, transform .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--orange); color: var(--white); }
.button-primary:hover { background: var(--orange-dark); }
.button-outline { border-color: var(--navy); color: var(--navy); }
.button-outline:hover { background: var(--navy); color: var(--white); }
.button-light { background: var(--white); color: var(--navy-deep); }
.text-link { min-height: 44px; display: inline-flex; align-items: center; border-bottom: 2px solid var(--orange); color: var(--navy); font-size: 12px; font-weight: 800; }
.hero-visual { height: 100%; min-height: 0; position: relative; display: flex; align-items: center; justify-content: center; }
.hero-visual::before { content: ""; position: absolute; width: min(31vw, 470px); aspect-ratio: 1; border-radius: 50%; background: rgba(255,255,255,.82); box-shadow: var(--shadow); }
.orbit { position: absolute; border: 1px solid rgba(20,41,121,.16); border-radius: 50%; }
.orbit-one { width: 540px; height: 540px; }
.orbit-two { width: 680px; height: 680px; }
.water-mark { position: absolute; right: 0; top: 2%; color: rgba(20,41,121,.08); font-size: clamp(80px, 11vw, 170px); font-weight: 800; letter-spacing: -.07em; }
.hero-pack { width: auto; max-width: none; position: absolute; z-index: 2; object-fit: contain; filter: drop-shadow(0 28px 25px rgba(9,24,77,.2)); }
.hero-pack-main { height: min(58vh, 480px); left: 27%; bottom: 3%; transform: rotate(-4deg); }
.hero-pack-side { height: min(49vh, 400px); right: 8%; bottom: 3%; transform: rotate(5deg); }
.hero-note { width: 148px; height: 148px; padding: 22px; position: absolute; z-index: 3; left: 2%; bottom: 8%; display: flex; flex-direction: column; justify-content: center; border-radius: 50%; background: var(--orange); color: var(--white); box-shadow: var(--shadow); }
.hero-note strong { font-size: 28px; line-height: 1; }
.hero-note span { margin-top: 7px; font-size: 10px; font-weight: 700; line-height: 1.35; text-transform: uppercase; }

.proof-strip { padding: 0 var(--gutter); display: grid; grid-template-columns: repeat(4, 1fr); background: var(--navy); color: var(--white); }
.proof-strip > div { min-height: 138px; padding: 30px clamp(20px, 2.3vw, 38px); display: flex; flex-direction: column; justify-content: center; border-right: 1px solid rgba(255,255,255,.14); }
.proof-strip > div:last-child { border-right: 0; }
.proof-strip strong { font-size: 17px; }
.proof-strip span { margin-top: 4px; color: rgba(255,255,255,.62); font-size: 12px; }

.intro-section { max-width: var(--max); margin: auto; padding: 130px var(--gutter) 80px; display: grid; grid-template-columns: 70px minmax(0, 1.2fr) minmax(280px, .72fr); gap: clamp(28px, 5vw, 82px); }
.section-number { color: var(--orange); font-size: 12px; font-weight: 800; }
.section-heading h2, .range-heading h2, .origin-copy h2, .capabilities h2, .closing-section h2, .catalog-hero h1, .catalog-cta h2, .product-info-intro h2, .related-heading h2 { margin: 0; color: var(--navy-deep); font-size: clamp(38px, 4.3vw, 66px); font-weight: 700; letter-spacing: -.045em; line-height: 1.08; }
.intro-copy p { color: var(--slate); }
.intro-copy .lead { margin-top: 42px; color: var(--ink); font-size: 20px; font-weight: 600; line-height: 1.55; }

.partner-paths { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter) 130px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.path-card { min-height: 355px; padding: clamp(28px, 3vw, 42px); display: flex; flex-direction: column; color: var(--white); }
.path-card > span { font-size: 11px; font-weight: 800; opacity: .65; }
.path-card h3 { margin: auto 0 14px; font-size: 25px; line-height: 1.2; }
.path-card p { min-height: 76px; margin: 0; color: rgba(255,255,255,.72); font-size: 14px; }
.path-card a { min-height: 44px; margin-top: 22px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid rgba(255,255,255,.28); font-size: 12px; font-weight: 800; }
.path-card-dark { background: var(--navy-deep); }
.path-card-orange { background: var(--orange-dark); }
.path-card-water { background: #12677d; }

.range-section { padding: 120px var(--gutter); background: var(--ice); }
.range-heading { max-width: var(--max); margin: 0 auto 54px; display: grid; grid-template-columns: 1fr .7fr; align-items: end; gap: 50px; }
.range-heading > p { max-width: 510px; margin: 0 0 8px; color: var(--slate); }
.family-grid { max-width: var(--max); margin: auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.family-card { min-height: 520px; padding: 24px; position: relative; overflow: hidden; color: var(--navy-deep); }
.family-card::after { content: ""; position: absolute; inset: auto 0 0; height: 42%; background: linear-gradient(transparent, rgba(255,255,255,.92)); }
.family-card img { width: auto; height: 365px; position: absolute; left: 50%; top: 65px; transform: translateX(-50%); object-fit: contain; filter: drop-shadow(0 18px 18px rgba(9,24,77,.15)); transition: transform .3s ease; }
.family-card:hover img { transform: translateX(-50%) translateY(-7px); }
.family-index, .family-count { position: relative; z-index: 2; font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.family-count { float: right; }
.family-name { position: absolute; z-index: 3; right: 24px; bottom: 24px; left: 24px; }
.family-name strong, .family-name small { display: block; }
.family-name strong { font-size: 23px; }
.family-name small { margin-top: 4px; color: var(--slate); font-size: 11px; font-weight: 600; }
.family-hygiene { background: #e6f4f8; }
.family-decongestion { background: #e2eee9; }
.family-prevention { background: #e5ecfa; }
.family-baby { background: #fae7eb; }
.range-section > .button { margin: 42px auto 0; }

.origin-section { height: 480px; display: grid; grid-template-columns: 1.06fr .94fr; overflow: hidden; }
.origin-image { min-height: 0; overflow: hidden; }
.origin-image img { width: 100%; height: 100%; object-fit: cover; }
.origin-copy { padding: clamp(34px, 4vw, 52px); display: flex; flex-direction: column; justify-content: center; background: var(--navy-deep); color: var(--white); }
.origin-copy .eyebrow { margin-bottom: 10px; }
.origin-copy h2 { color: var(--white); font-size: clamp(36px, 3.6vw, 52px); line-height: 1.03; }
.origin-copy > p:not(.eyebrow) { max-width: 580px; margin: 13px 0; color: rgba(255,255,255,.76); font-size: 13px; line-height: 1.5; }
.checked-list { margin: 0 0 14px; padding: 0; list-style: none; }
.checked-list li { padding: 7px 0 7px 25px; position: relative; border-bottom: 1px solid rgba(255,255,255,.13); font-size: 12px; }
.checked-list li::before { content: ""; width: 8px; height: 8px; position: absolute; left: 2px; top: 15px; border-radius: 50%; background: var(--orange); }
.origin-copy .text-link { color: var(--white); align-self: flex-start; }

.capabilities { max-width: var(--max); margin: auto; padding: 130px var(--gutter); display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(60px, 9vw, 145px); }
.capabilities-intro { position: sticky; top: 40px; align-self: start; }
.capabilities-intro > p:last-child { margin-top: 30px; color: var(--slate); }
.capability-list { border-top: 1px solid var(--line); }
.capability-list article { padding: 32px 0; display: grid; grid-template-columns: 56px 1fr; gap: 20px; border-bottom: 1px solid var(--line); }
.capability-list article > span { color: var(--orange-dark); font-size: 11px; font-weight: 800; }
.capability-list h3 { margin: 0 0 8px; color: var(--navy); font-size: 22px; }
.capability-list p { margin: 0; color: var(--slate); font-size: 14px; }

.closing-section { padding: 110px var(--gutter); text-align: center; background: var(--orange); color: var(--white); }
.closing-section .eyebrow { color: var(--navy-deep); }
.closing-section h2 { color: var(--white); font-size: clamp(45px, 6vw, 82px); }
.closing-section > p:not(.eyebrow) { max-width: 700px; margin: 24px auto 35px; color: rgba(255,255,255,.86); }
.closing-actions { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 26px; }
.closing-actions > a:not(.button) { min-height: 44px; display: flex; align-items: center; border-bottom: 1px solid rgba(255,255,255,.7); font-size: 12px; font-weight: 800; }

.site-footer { padding: 75px var(--gutter) 28px; display: grid; grid-template-columns: 1.25fr .7fr .9fr .8fr; gap: 50px; background: #07113a; color: var(--white); }
.footer-brand img { width: 155px; padding: 8px; background: var(--white); }
.footer-brand p, .footer-office p { max-width: 290px; color: rgba(255,255,255,.55); font-size: 12px; }
.footer-links { display: flex; flex-direction: column; align-items: flex-start; gap: 7px; }
.footer-links strong, .footer-office strong { margin-bottom: 10px; color: #9cb6ff; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.footer-links a { min-height: 44px; display: flex; align-items: center; color: rgba(255,255,255,.7); font-size: 12px; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { grid-column: 1 / -1; margin-top: 25px; padding-top: 22px; display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.38); font-size: 10px; }

/* Catalogue */
.catalog-hero { padding: 100px var(--gutter) 90px; background: var(--navy-deep); color: var(--white); }
.catalog-hero > * { max-width: var(--max); margin-left: auto; margin-right: auto; }
.catalog-hero .eyebrow { color: #8fd6e5; }
.catalog-hero h1 { max-width: 970px; color: var(--white); font-size: clamp(50px, 6vw, 88px); }
.catalog-hero > p:last-child { max-width: 690px; margin-top: 26px; margin-left: max(0px, calc((100% - var(--max)) / 2)); color: rgba(255,255,255,.7); font-size: 18px; }
.catalog-section { max-width: var(--max); margin: auto; padding: 70px var(--gutter) 120px; }
.catalog-toolbar { margin-bottom: 44px; display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; }
.catalog-toolbar .eyebrow { margin-bottom: 3px; }
.catalog-toolbar p { margin: 0; color: var(--slate); font-size: 12px; }
.filter-group { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.filter-button { min-height: 44px; padding: 10px 17px; border: 1px solid var(--line); border-radius: 100px; background: var(--white); color: var(--slate); cursor: pointer; font-size: 12px; font-weight: 700; }
.filter-button:hover, .filter-button.is-active { border-color: var(--navy); background: var(--navy); color: var(--white); }
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 55px 16px; }
.product-card[hidden] { display: none; }
.product-image { height: 430px; position: relative; overflow: hidden; }
.product-image img { width: auto; height: 350px; position: absolute; left: 50%; bottom: 27px; transform: translateX(-50%); object-fit: contain; filter: drop-shadow(0 17px 15px rgba(9,24,77,.14)); transition: transform .25s ease; }
.product-card:hover .product-image img { transform: translateX(-50%) translateY(-6px); }
.product-tag { position: absolute; z-index: 2; left: 14px; top: 14px; padding: 6px 9px; background: rgba(255,255,255,.88); color: var(--navy-deep); font-size: 9px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.product-meta { padding-top: 18px; }
.product-meta > span:first-child, .related-card > span { color: var(--orange-dark); font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.product-meta h2 { margin: 7px 0 5px; color: var(--navy-deep); font-size: 18px; line-height: 1.3; }
.product-meta p { min-height: 46px; margin: 0; color: var(--slate); font-size: 12px; line-height: 1.55; }
.card-link { margin-top: 13px; display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--line); color: var(--navy); font-size: 11px; font-weight: 800; }
.card-link b { padding: 11px 0; font-size: 17px; }
.tone-blue { background: #e8f4f9; }.tone-aqua { background: #e1f4ef; }.tone-navy { background: #e6ebf5; }.tone-green { background: #e4f1e6; }.tone-lilac { background: #eee9f6; }.tone-orange { background: #fbe8dc; }.tone-sky { background: #eaf5fb; }.tone-pink { background: #fae9ef; }
.catalog-cta { padding: 75px var(--gutter); display: grid; grid-template-columns: 1.15fr .8fr auto; align-items: center; gap: 50px; background: var(--navy); color: var(--white); }
.catalog-cta .eyebrow { color: #8fd6e5; margin-bottom: 7px; }
.catalog-cta h2 { color: var(--white); font-size: clamp(34px, 4vw, 54px); }
.catalog-cta > p { color: rgba(255,255,255,.66); font-size: 14px; }

/* Product detail */
.breadcrumb { max-width: var(--max); margin: auto; padding: 28px var(--gutter); display: flex; flex-wrap: wrap; gap: 9px; color: var(--slate); font-size: 11px; }
.breadcrumb a { color: var(--navy); font-weight: 700; }
.product-detail { max-width: var(--max); margin: 0 auto; padding: 10px var(--gutter) 110px; display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(55px, 8vw, 120px); align-items: center; }
.product-detail-visual { min-height: 700px; position: relative; display: grid; place-items: center; overflow: hidden; }
.product-detail-visual img { width: auto; height: 590px; position: relative; z-index: 2; object-fit: contain; filter: drop-shadow(0 30px 25px rgba(9,24,77,.18)); }
.detail-watermark { position: absolute; left: 50%; top: 50%; color: rgba(20,41,121,.055); font-size: clamp(65px, 8vw, 118px); font-weight: 800; letter-spacing: -.07em; transform: translate(-50%, -50%) rotate(-90deg); }
.detail-format { position: absolute; left: 24px; bottom: 22px; color: var(--navy); font-size: 11px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.product-detail-copy h1 { margin: 0; color: var(--navy-deep); font-size: clamp(44px, 5vw, 72px); line-height: 1.02; letter-spacing: -.05em; }
.product-subtitle { margin: 13px 0 27px; color: var(--orange-dark); font-size: 16px; font-weight: 700; }
.product-summary { margin-bottom: 30px; color: var(--slate); font-size: 17px; line-height: 1.75; }
.product-facts { margin: 0 0 32px; border-top: 1px solid var(--line); }
.product-facts > div { padding: 14px 0; display: grid; grid-template-columns: 108px 1fr; gap: 18px; border-bottom: 1px solid var(--line); }
.product-facts dt { color: var(--slate); font-size: 11px; font-weight: 700; }
.product-facts dd { margin: 0; color: var(--navy-deep); font-size: 12px; font-weight: 700; }
.product-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 24px; }
.product-information { padding: 110px var(--gutter); display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(60px, 10vw, 150px); background: var(--ice); }
.product-info-intro { max-width: 490px; }
.product-info-intro > p:last-child { margin-top: 24px; color: var(--slate); }
.accordion-list { border-top: 1px solid var(--line); }
.accordion-list details { border-bottom: 1px solid var(--line); }
.accordion-list summary { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--navy-deep); cursor: pointer; list-style: none; font-weight: 800; }
.accordion-list summary::-webkit-details-marker { display: none; }
.accordion-list summary span { color: var(--orange); font-size: 24px; transition: transform .2s; }
.accordion-list details[open] summary span { transform: rotate(45deg); }
.accordion-list details > div { padding: 0 44px 25px 0; color: var(--slate); font-size: 14px; }
.accordion-list details > div p { margin-top: 0; }
.regulatory-note { max-width: var(--max); margin: 60px auto; padding: 25px var(--gutter); display: grid; grid-template-columns: 210px 1fr; gap: 35px; border-left: 4px solid var(--orange); background: #fff6f0; }
.regulatory-note strong { color: var(--navy-deep); font-size: 13px; }
.regulatory-note p { margin: 0; color: var(--slate); font-size: 12px; }
.related-section { max-width: var(--max); margin: auto; padding: 60px var(--gutter) 120px; }
.related-heading { margin-bottom: 38px; display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; }
.related-heading h2 { font-size: clamp(38px, 4vw, 58px); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.related-image { height: 410px; margin-bottom: 18px; position: relative; overflow: hidden; }
.related-image img { width: auto; height: 340px; position: absolute; left: 50%; bottom: 25px; transform: translateX(-50%); object-fit: contain; transition: transform .25s; filter: drop-shadow(0 16px 16px rgba(9,24,77,.13)); }
.related-card:hover img { transform: translateX(-50%) translateY(-6px); }
.related-card strong { margin-top: 4px; display: block; color: var(--navy-deep); font-size: 17px; }

@media (max-width: 1050px) {
  .site-header { grid-template-columns: 96px 1fr; }
  .site-nav { gap: 16px; }
  .site-nav > a:not(.nav-cta) { font-size: 10px; }
  .hero { grid-template-columns: 1fr .8fr; }
  .hero-visual { min-height: 520px; }
  .hero-pack-main { height: 440px; left: 20%; }
  .hero-pack-side { height: 355px; right: -2%; }
  .family-grid, .product-grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-office { grid-column: 1 / -1; }
  .catalog-cta { grid-template-columns: 1fr 1fr; }
  .catalog-cta .button { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  :root { --header-h: 60px; --concept-h: 36px; }
  .concept-bar { padding: 5px 14px; text-align: center; font-size: 10px; }
  .site-header { grid-template-columns: 1fr auto; padding: 5px 20px; position: sticky; top: 0; z-index: 200; }
  .brand { width: 78px; height: 46px; }.brand img { width: 76px; }
  .menu-toggle { width: 44px; height: 44px; padding: 0; position: relative; z-index: 102; display: block; border: 1px solid var(--line); border-radius: 50%; background: var(--white); cursor: pointer; }
  .menu-toggle span:not(.sr-only) { width: 18px; height: 2px; position: absolute; left: 12px; background: var(--navy); transition: transform .2s, top .2s, opacity .2s; }
  .menu-toggle span:first-child { top: 16px; }.menu-toggle span:nth-child(2) { top: 24px; }
  .menu-toggle[aria-expanded="true"] span:first-child { top: 20px; transform: rotate(45deg); }.menu-toggle[aria-expanded="true"] span:nth-child(2) { top: 20px; transform: rotate(-45deg); }
  .site-nav { width: min(88vw, 370px); padding: 82px 26px 35px; position: fixed; z-index: 101; top: 0; right: 0; bottom: var(--concept-h); flex-direction: column; justify-content: flex-start; align-items: stretch; gap: 0; background: var(--white); box-shadow: -20px 0 60px rgba(9,24,77,.18); transform: translateX(105%); visibility: hidden; transition: transform .25s ease, visibility .25s; }
  .site-nav.is-open { transform: translateX(0); visibility: visible; }
  .site-nav > a:not(.nav-cta) { min-height: 55px; padding: 15px 0; display: flex; align-items: center; border-bottom: 1px solid var(--line); font-size: 14px; }
  .site-nav > a:not(.nav-cta)::after { display: none; }
  .site-nav .language-switcher { margin-top: 22px; align-self: flex-start; }
  .nav-cta { margin-top: 24px; justify-content: space-between; }
  body.menu-open::after { content: ""; position: fixed; z-index: 99; inset: 0 0 var(--concept-h); background: rgba(9,24,77,.48); }
  .hero { height: calc(100svh - var(--header-h) - var(--concept-h)); min-height: 0; padding: 22px 20px 14px; grid-template-columns: 1fr; grid-template-rows: auto minmax(0, 1fr); align-items: start; gap: 8px; }
  .hero h1 { font-size: clamp(34px, 10.6vw, 46px); line-height: 1; }
  .hero-lead { display: none; }
  .hero-actions { margin-top: 16px; align-items: flex-start; flex-direction: row; gap: 12px 18px; }
  .hero-actions .button { width: 100%; justify-content: space-between; }
  .hero-actions .text-link { align-self: flex-start; }
  .hero-visual { min-height: 0; height: 100%; margin: 0 -20px; }
  .hero-visual::before { width: min(62vw, 270px); }
  .orbit-one { width: min(78vw, 330px); height: min(78vw, 330px); }.orbit-two { width: min(100vw, 420px); height: min(100vw, 420px); }
  .hero-pack-main { height: min(37vh, 295px); left: 28%; bottom: 0; }.hero-pack-side { height: min(30vh, 235px); right: 8%; bottom: 0; }
  .hero-note { width: 86px; height: 86px; left: 7%; bottom: 2%; padding: 13px; }.hero-note strong { font-size: 15px; }.hero-note span { font-size: 7px; }
  .proof-strip { padding: 0; grid-template-columns: 1fr 1fr; }.proof-strip > div { min-height: 112px; padding: 22px 20px; border-right: 1px solid rgba(255,255,255,.14); border-bottom: 1px solid rgba(255,255,255,.14); }.proof-strip strong { font-size: 14px; }.proof-strip span { font-size: 10px; }
  .intro-section { padding: 84px 20px 55px; grid-template-columns: 1fr; gap: 14px; }.section-number { display: none; }.section-heading h2, .range-heading h2, .origin-copy h2, .capabilities h2, .catalog-hero h1 { font-size: clamp(38px, 11vw, 52px); }.intro-copy .lead { margin-top: 18px; font-size: 17px; }
  .partner-paths { padding: 0 20px 84px; grid-template-columns: 1fr; }.path-card { min-height: 290px; }
  .range-section { padding: 80px 20px; }.range-heading { grid-template-columns: 1fr; gap: 20px; }.family-grid { grid-template-columns: 1fr 1fr; gap: 8px; }.family-card { min-height: 390px; padding: 16px; }.family-card img { height: 275px; top: 52px; }.family-name { left: 16px; right: 16px; bottom: 17px; }.family-name strong { font-size: 17px; }.family-name small { font-size: 9px; }.family-count { display: none; }
  .origin-section { height: auto; grid-template-columns: 1fr; }.origin-image { height: 245px; min-height: 0; }.origin-copy { padding: 48px 20px; }
  .capabilities { padding: 84px 20px; grid-template-columns: 1fr; gap: 45px; }.capabilities-intro { position: static; }
  .closing-section { padding: 80px 20px; }.closing-section h2 { font-size: 48px; }.closing-actions { flex-direction: column; }.closing-actions .button { width: 100%; }
  .site-footer { padding: 62px 20px 25px; grid-template-columns: 1fr 1fr; gap: 38px 24px; }.footer-brand { grid-column: 1 / -1; }.footer-office { grid-column: 1 / -1; }.footer-bottom { flex-direction: column; gap: 6px; }
  .catalog-hero { padding: 75px 20px 70px; }.catalog-hero > p:last-child { margin-top: 22px; font-size: 15px; }.catalog-section { padding: 52px 20px 85px; }.catalog-toolbar { align-items: flex-start; flex-direction: column; }.filter-group { justify-content: flex-start; }.product-grid { grid-template-columns: 1fr 1fr; gap: 42px 9px; }.product-image { height: 320px; }.product-image img { height: 260px; bottom: 20px; }.product-tag { left: 8px; top: 8px; padding: 5px 6px; font-size: 7px; }.product-meta h2 { font-size: 14px; }.product-meta > span:first-child { font-size: 8px; }.product-meta p { min-height: 68px; font-size: 10px; }.card-link { font-size: 9px; }.catalog-cta { padding: 65px 20px; grid-template-columns: 1fr; gap: 20px; }.catalog-cta .button { grid-column: auto; width: 100%; justify-content: space-between; }
  .breadcrumb { padding: 20px; }.product-detail { padding: 0 20px 80px; grid-template-columns: 1fr; gap: 42px; }.product-detail-visual { min-height: 500px; }.product-detail-visual img { height: 420px; }.product-detail-copy h1 { font-size: 46px; }.product-summary { font-size: 15px; }.product-actions { align-items: stretch; flex-direction: column; }.product-actions .button { width: 100%; justify-content: space-between; }.product-actions .text-link { align-self: flex-start; }.product-information { padding: 80px 20px; grid-template-columns: 1fr; gap: 45px; }.accordion-list summary { min-height: 70px; }.regulatory-note { margin: 40px 20px; padding: 22px; grid-template-columns: 1fr; gap: 10px; }.related-section { padding: 55px 20px 85px; }.related-heading { align-items: flex-start; flex-direction: column; }.related-grid { grid-template-columns: 1fr 1fr; gap: 9px; }.related-card:last-child { display: none; }.related-image { height: 320px; }.related-image img { height: 265px; }
}

@media (max-width: 390px) {
  .family-card { min-height: 340px; }.family-card img { height: 230px; }.product-image { height: 285px; }.product-image img { height: 225px; }
}

/* Complete bilingual site pages */
.wrap { width: min(100%, var(--max)); margin-inline: auto; padding-inline: var(--gutter); }
.kicker { margin: 0 0 16px; color: var(--orange-dark); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.sub { color: var(--slate); }
.btn { min-height: 50px; width: fit-content; padding: 12px 20px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--navy); background: var(--navy); color: var(--white); font-size: 12px; font-weight: 800; line-height: 1.2; cursor: pointer; transition: background .2s, color .2s, transform .2s; }
.btn:hover { background: var(--navy-deep); transform: translateY(-2px); }
.btn.navy { background: var(--navy-deep); }

.pagehead { padding: clamp(74px, 9vw, 128px) 0; background: var(--navy-deep); color: var(--white); }
.pagehead h1 { max-width: 1000px; margin: 0; color: var(--white); font-size: clamp(50px, 7vw, 94px); font-weight: 700; letter-spacing: -.055em; line-height: .98; }
.pagehead .sub { max-width: 760px; margin: 28px 0 0; color: rgba(255,255,255,.74); font-size: clamp(16px, 1.5vw, 20px); line-height: 1.65; }

.products { padding: 104px 0 120px; background: var(--ice); }
.products .head { margin-bottom: 42px; display: grid; grid-template-columns: 1fr .72fr; align-items:end; gap: 50px; }
.products .head h2, .story h2, .stepsblock h2, .intl h2, .xtext h2, .partner h2, .contact h2, .related h2, .legalpage h2, .contact-preview h2 { margin: 0; color: var(--navy-deep); font-size: clamp(36px, 4.3vw, 64px); font-weight: 700; letter-spacing: -.045em; line-height: 1.07; }
.products .head .sub { max-width: 520px; margin: 0 0 7px; }
.filters { margin-bottom: 38px; display: flex; flex-wrap: wrap; gap: 8px; }
.chip { min-height: 44px; padding: 10px 17px; border: 1px solid #b9c8cf; border-radius: 999px; background: transparent; color: var(--navy-deep); font-size: 11px; font-weight: 800; cursor: pointer; }
.chip:hover, .chip.active { border-color: var(--navy); background: var(--navy); color: var(--white); }
.prod-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px 13px; }
.prod { min-width: 0; display: block; }
.prod.hide { display: none; }
.prod .stage { height: 440px; position: relative; overflow: hidden; background: #e6f4f8; }
.prod:nth-child(4n+2) .stage { background: #e2eee9; }
.prod:nth-child(4n+3) .stage { background: #e5ecfa; }
.prod:nth-child(4n+4) .stage { background: #fae7eb; }
.prod .stage img { width: auto; height: 360px; position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%); object-fit: contain; filter: drop-shadow(0 18px 18px rgba(9,24,77,.15)); transition: transform .25s ease; }
.prod:hover .stage img { transform: translateX(-50%) translateY(-7px); }
.prod .name { margin: 17px 0 0; color: var(--navy-deep); font-size: 15px; font-weight: 800; line-height: 1.25; }
.prod .name small { margin-top: 4px; display:block; color: var(--slate); font-size: 10px; font-weight: 600; }

.partner { padding: 76px 0; background: var(--water); }
.partner .row, .intl .row { display: grid; grid-template-columns: minmax(0,1fr) auto; align-items:center; gap: 70px; }
.partner h2, .intl h2 { font-size: clamp(38px, 4.8vw, 68px); }
.partner p, .intl p { max-width: 760px; margin: 20px 0 0; color: var(--slate); }

.story { padding: 110px 0; }
.story .grid { display: grid; grid-template-columns: 1fr .9fr; align-items:center; gap: clamp(50px, 8vw, 120px); }
.story .photo { height: 520px; overflow:hidden; background: var(--ice); }
.story .photo img { width:100%; height:100%; object-fit:cover; }
.story .sub { margin: 28px 0 0; font-size: 17px; line-height:1.75; }
.signature { margin: 30px 0 0; padding-top: 24px; border-top: 1px solid var(--line); color: var(--navy-deep); font-weight:800; }

.stepsblock { padding: 108px 0 120px; background: var(--ice); }
.stepsblock .head { margin-bottom: 54px; display:grid; grid-template-columns:1fr .72fr; align-items:end; gap:60px; }
.stepsblock .head .sub { margin:0 0 6px; }
.steps-grid { display:grid; grid-template-columns:repeat(4,1fr); border-top:1px solid var(--navy); }
.step { min-height:310px; padding:30px 26px; border-right:1px solid var(--line); }
.step:last-child { border-right:0; }
.step .n, .xtext .n, .schead .n { color:var(--orange-dark); font-size:11px; font-weight:800; }
.step h3 { margin:70px 0 15px; color:var(--navy-deep); font-size:20px; line-height:1.25; }
.step p { margin:0; color:var(--slate); font-size:13px; }
.intl { padding:78px 0; background:var(--navy-deep); color:var(--white); }
.intl h2 { color:var(--white); }
.intl p { color:rgba(255,255,255,.7); }
.intl .btn { border-color:var(--white); background:var(--white); color:var(--navy-deep); }

.xrows { padding:95px 0 120px; }
.xrow { margin-bottom:80px; display:grid; grid-template-columns:1fr 1fr; align-items:center; gap:clamp(46px,8vw,110px); }
.xrow.flip .ximg { order:2; }
.ximg { height:470px; overflow:hidden; background:var(--ice); }
.ximg img { width:100%; height:100%; object-fit:cover; }
.xtext h2 { margin-top:14px; font-size:clamp(35px,4vw,56px); }
.xtext p { margin:24px 0 0; color:var(--slate); line-height:1.75; }

.faq { padding:90px 0 120px; }
.qa { border-top:1px solid var(--line); }
.qa:last-child { border-bottom:1px solid var(--line); }
.qa summary { min-height:82px; display:flex; align-items:center; justify-content:space-between; gap:24px; color:var(--navy-deep); cursor:pointer; list-style:none; font-weight:800; }
.qa summary::-webkit-details-marker { display:none; }
.qa summary svg { width:20px; flex:0 0 auto; transition:transform .2s; }
.qa[open] summary svg { transform:rotate(180deg); }
.qa > p { max-width:850px; margin:0; padding:0 55px 28px 0; color:var(--slate); }

.contact { padding:100px 0 120px; }
.contact > .wrap > .grid { display:grid; grid-template-columns:1.3fr .7fr; gap:clamp(50px,8vw,110px); }
.form { padding:40px; background:var(--ice); }
.frow { display:grid; grid-template-columns:1fr 1fr; gap:20px; }
.field { margin-bottom:22px; }
.field.full { grid-column:1 / -1; }
.field label { margin-bottom:8px; display:block; color:var(--navy-deep); font-size:11px; font-weight:800; }
.field input, .field select, .field textarea { width:100%; min-height:50px; padding:12px 14px; border:1px solid #b9c8cf; border-radius:0; background:var(--white); color:var(--ink); font:inherit; }
.field textarea { min-height:160px; resize:vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color:var(--orange); outline:3px solid rgba(255,103,31,.2); }
.aside .block { padding:0 0 28px; margin-bottom:28px; border-bottom:1px solid var(--line); }
.aside h3 { margin:0 0 10px; color:var(--navy-deep); font-size:14px; }
.aside p { margin:0; color:var(--slate); }
.aside .big { color:var(--navy-deep); font-size:22px; font-weight:700; }

.contact-preview { padding:80px var(--gutter); display:grid; grid-template-columns:1.05fr .75fr auto; align-items:center; gap:60px; background:var(--white); }
.contact-preview h2 { font-size:clamp(34px,4vw,58px); }
.contact-preview > p { max-width:530px; color:var(--slate); }

.crumbs { max-width:var(--max); margin:0 auto; padding:24px var(--gutter); display:flex; flex-wrap:wrap; gap:10px; color:var(--slate); font-size:11px; }
.crumbs a { color:var(--navy); font-weight:700; }
.pdp { padding:15px 0 105px; }
.pdp > .wrap > .grid { display:grid; grid-template-columns:1.02fr .98fr; gap:clamp(50px,8vw,115px); align-items:start; }
.pdp > .wrap > .grid > .stage { min-height:690px; position:sticky; top:30px; display:grid; place-items:center; overflow:hidden; background:var(--ice); }
.pdp > .wrap > .grid > .stage::before { content:""; width:62%; aspect-ratio:1; position:absolute; border-radius:50%; background:rgba(255,255,255,.85); box-shadow:var(--shadow); }
.pdp > .wrap > .grid > .stage img { width:auto; height:570px; position:relative; z-index:1; object-fit:contain; filter:drop-shadow(0 28px 24px rgba(9,24,77,.18)); }
.tagline { color:var(--orange-dark); font-size:11px; font-weight:800; letter-spacing:.13em; text-transform:uppercase; }
.pdp h1 { margin:16px 0 0; color:var(--navy-deep); font-size:clamp(44px,5vw,72px); line-height:1; letter-spacing:-.05em; }
.pdp .lead { margin:24px 0 0; color:var(--slate); font-size:17px; line-height:1.7; }
.facts { margin:28px 0; display:flex; flex-wrap:wrap; gap:8px; }
.facts span { min-height:38px; padding:8px 12px; display:inline-flex; align-items:center; border:1px solid var(--line); color:var(--navy-deep); font-size:10px; font-weight:700; }
.sec { padding:25px 0; border-top:1px solid var(--line); }
.sec:last-of-type { border-bottom:1px solid var(--line); }
.schead { margin-bottom:15px; display:grid; grid-template-columns:38px 1fr; gap:12px; align-items:baseline; }
.schead h3 { margin:0; color:var(--navy-deep); font-size:17px; }
.sec p { color:var(--slate); }
.ind { margin:0; padding:0; display:grid; gap:8px; list-style:none; }
.ind li { position:relative; padding-left:22px; color:var(--slate); font-size:13px; }
.ind li::before { content:""; width:7px; height:7px; position:absolute; left:0; top:8px; background:var(--orange); }
.docband { margin-top:30px; padding:26px; background:var(--navy-deep); color:var(--white); }
.docband h3 { margin:0; font-size:18px; }
.docband p { margin:8px 0 20px; color:rgba(255,255,255,.72); font-size:12px; }
.docband .btn { border-color:var(--orange); background:var(--orange); }
.related { padding:95px 0 120px; background:var(--ice); }
.related .head { margin-bottom:40px; }
.rel-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }

.legalpage { padding:90px 0 120px; }
.lsec { max-width:900px; padding:34px 0; border-bottom:1px solid var(--line); }
.lsec h2 { font-size:clamp(27px,3vw,38px); }
.lsec p { color:var(--slate); line-height:1.75; }

.js .rv { opacity:0; transform:translateY(18px); transition:opacity .55s ease, transform .55s ease; }
.js .rv.in { opacity:1; transform:none; }

@media (max-width: 1050px) {
  .prod-grid { grid-template-columns:repeat(2,1fr); }
  .steps-grid { grid-template-columns:repeat(2,1fr); }
  .step:nth-child(2) { border-right:0; }
  .step:nth-child(-n+2) { border-bottom:1px solid var(--line); }
  .contact-preview { grid-template-columns:1fr 1fr; }
  .contact-preview .button { grid-column:1 / -1; }
}

@media (max-width: 760px) {
  .pagehead { padding:66px 0; }
  .pagehead h1 { font-size:clamp(43px,13vw,62px); }
  .pagehead .sub { margin-top:20px; font-size:15px; }
  .products { padding:72px 0 84px; }
  .products .head, .stepsblock .head { grid-template-columns:1fr; gap:18px; }
  .prod-grid { gap:40px 9px; }
  .prod .stage { height:315px; }
  .prod .stage img { height:250px; bottom:20px; }
  .prod .name { font-size:13px; }
  .partner, .intl { padding:62px 0; }
  .partner .row, .intl .row { grid-template-columns:1fr; gap:28px; }
  .story { padding:76px 0; }
  .story .grid { grid-template-columns:1fr; gap:38px; }
  .story .photo { height:310px; }
  .story .sub { font-size:15px; }
  .stepsblock { padding:76px 0 84px; }
  .steps-grid { grid-template-columns:1fr; }
  .step, .step:nth-child(2) { min-height:0; padding:28px 0; border-right:0; border-bottom:1px solid var(--line); }
  .step h3 { margin:30px 0 12px; }
  .xrows { padding:72px 0 84px; }
  .xrow { margin-bottom:58px; grid-template-columns:1fr; gap:30px; }
  .xrow.flip .ximg { order:0; }
  .ximg { height:290px; }
  .faq { padding:70px 0 84px; }
  .qa summary { min-height:76px; font-size:14px; }
  .contact { padding:72px 0 84px; }
  .contact > .wrap > .grid { grid-template-columns:1fr; gap:50px; }
  .form { padding:24px 20px; }
  .frow { grid-template-columns:1fr; gap:0; }
  .field.full { grid-column:auto; }
  .contact-preview { padding:64px 20px; grid-template-columns:1fr; gap:22px; }
  .contact-preview .button { grid-column:auto; width:100%; justify-content:space-between; }
  .pdp { padding:0 0 78px; }
  .pdp > .wrap > .grid { grid-template-columns:1fr; gap:42px; }
  .pdp > .wrap > .grid > .stage { min-height:500px; position:relative; top:auto; }
  .pdp > .wrap > .grid > .stage img { height:420px; }
  .pdp h1 { font-size:44px; }
  .rel-grid { grid-template-columns:1fr 1fr; gap:9px; }
  .rel-grid .prod:last-child { display:none; }
  .related { padding:72px 0 84px; }
  .legalpage { padding:68px 0 84px; }
}

@media (max-width: 390px) {
  .prod .stage { height:280px; }
  .prod .stage img { height:220px; }
  .pdp > .wrap > .grid > .stage { min-height:440px; }
  .pdp > .wrap > .grid > .stage img { height:360px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
