:root {
    --ink: #293730;
    --ink-soft: #607168;
    --deep: #32483c;
    --deep-2: #496451;
    --teal: #5c7d48;
    --teal-bright: #f58b32;
    --sky: #f3aa66;
    --mist: #f2f5ef;
    --paper: #fff;
    --line: #dfe5da;
    --shadow: 0 28px 80px rgba(45, 69, 56, .14);
    --container: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
p { margin: 0; }
h1, h2, h3 { margin: 0; font-weight: 450; letter-spacing: -.035em; }
.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.section { padding: 150px 0; }
.eyebrow { margin-bottom: 20px; color: var(--teal); font-size: 12px; font-weight: 800; letter-spacing: .19em; line-height: 1.4; }
.eyebrow::before { content: ""; display: inline-block; width: 38px; height: 2px; margin: 0 13px 3px 0; background: currentColor; }
.eyebrow-light { color: var(--teal-bright); }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 28px; min-height: 58px; padding: 0 26px; border: 1px solid transparent; font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; transition: .25s ease; }
.button span { font-size: 18px; transition: transform .25s ease; }
.button:hover span { transform: translateX(4px); }
.button-primary { background: var(--teal-bright); color: var(--deep); }
.button-primary:hover { background: white; }
.button-outline { border-color: var(--teal); color: var(--teal); }
.button-outline:hover { background: var(--teal); color: white; }
.button-light { border-color: rgba(255,255,255,.7); color: white; }
.button-light:hover { background: white; color: var(--deep); }
.text-link { display: inline-flex; align-items: center; gap: 12px; color: var(--teal); font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.text-link span { font-size: 18px; transition: transform .25s ease; }
.text-link:hover span { transform: translateX(5px); }
.text-link-light { color: white; }

.site-header { position: absolute; z-index: 50; inset: 0 0 auto; height: 134px; color: white; transition: background .25s ease, box-shadow .25s ease, height .25s ease; }
.site-header.scrolled { position: fixed; height: 108px; color: var(--ink); background: rgba(255,255,255,.96); box-shadow: 0 8px 35px rgba(10,41,48,.08); backdrop-filter: blur(16px); }
.product-page .site-header { position: relative; color: var(--ink); background: white; border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.brand-lockup { display: flex; flex-direction: column; align-items: flex-start; flex: 0 0 auto; }
.brand-row { display: flex; align-items: stretch; gap: 10px; }
.brand { position: relative; display: block; width: 286px; height: 72px; padding: 7px 10px; overflow: hidden; background: rgba(255,255,255,.97); border-radius: 8px; box-shadow: 0 8px 24px rgba(31,49,40,.12); }
.brand img { position: absolute; inset: 7px 10px; width: calc(100% - 20px); height: calc(100% - 14px); object-fit: contain; object-position: left center; transition: opacity .2s ease; }
.brand .brand-dark { opacity: 0; }
.site-header.scrolled .brand-light, .product-page .brand-light { opacity: 0; }
.site-header.scrolled .brand-dark, .product-page .brand-dark { opacity: 1; }
.partner-brand { display: grid; width: 152px; height: 72px; padding: 9px 12px; place-items: center; overflow: hidden; background: rgba(255,255,255,.97); border-radius: 8px; box-shadow: 0 8px 24px rgba(31,49,40,.12); }
.partner-brand img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.distributor-note { margin-top: 6px; padding-left: 5px; color: currentColor; font-size: 9px; font-weight: 800; letter-spacing: .045em; opacity: .86; }
.main-nav { display: flex; align-items: center; gap: 42px; font-size: 12px; font-weight: 800; letter-spacing: .085em; text-transform: uppercase; }
.main-nav > a { position: relative; padding: 15px 0; }
.main-nav > a:not(.nav-cta)::after { content: ""; position: absolute; right: 100%; bottom: 8px; left: 0; height: 2px; background: currentColor; transition: right .25s ease; }
.main-nav > a:hover::after { right: 0; }
.main-nav .nav-cta { padding: 16px 22px; border: 1px solid rgba(255,255,255,.55); }
.site-header.scrolled .nav-cta, .product-page .nav-cta { color: white; border-color: var(--teal); background: var(--teal); }
.menu-button { display: none; width: 48px; height: 48px; padding: 13px; border: 0; background: transparent; }
.menu-button span { display: block; height: 2px; margin: 5px 0; background: currentColor; }

.hero { position: relative; min-height: 790px; overflow: hidden; color: white; background: var(--deep) var(--hero-image) center/cover no-repeat; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(35, 55, 44, .92) 0%, rgba(62, 89, 70, .72) 48%, rgba(36, 48, 40, .22) 100%); }
.hero::before { content: ""; position: absolute; z-index: 1; top: 0; bottom: 0; left: calc((100% - min(var(--container), calc(100% - 48px))) / 2 - 32px); width: 1px; background: rgba(255,255,255,.13); }
.hero-content { position: relative; z-index: 2; display: flex; min-height: 790px; padding-top: 140px; padding-bottom: 120px; flex-direction: column; align-items: flex-start; justify-content: center; }
.hero-content h1 { max-width: 900px; color: white; font-size: clamp(58px, 6.5vw, 96px); line-height: .98; letter-spacing: -.052em; }
.hero-lead { max-width: 760px; margin-top: 32px; color: rgba(255,255,255,.8); font-size: 20px; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 34px; margin-top: 44px; }
.hero-curve { position: absolute; z-index: 3; right: -2px; bottom: -2px; width: 200px; height: 200px; background: white; border-radius: 100% 0 0 0; }

.solution-rail { position: relative; z-index: 5; display: grid; margin-top: -70px; grid-template-columns: repeat(3, 1fr); background: white; border-radius: 4px 38px 4px 4px; box-shadow: var(--shadow); }
.solution-rail a { display: grid; min-height: 142px; padding: 28px 32px; grid-template-columns: auto 1fr auto; align-items: center; gap: 20px; border-right: 1px solid var(--line); transition: background .25s ease; }
.solution-rail a:last-child { border-right: 0; border-radius: 0 38px 0 0; }
.solution-rail a:hover { background: var(--mist); }
.rail-icon { display: grid; width: 58px; height: 58px; place-items: center; color: white; background: var(--teal); border-radius: 50%; font-size: 12px; font-weight: 900; letter-spacing: .08em; }
.solution-rail span:nth-child(2) { font-size: 18px; font-weight: 700; }
.solution-rail small { display: block; margin-bottom: 6px; color: var(--teal); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.solution-rail b { color: var(--teal); font-size: 20px; font-weight: 400; }

.focus-section { padding-top: 125px; padding-bottom: 130px; }
.focus-heading { margin-bottom: 50px; }
.focus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.focus-card { position: relative; min-height: 455px; overflow: hidden; color: white; border-radius: 4px 46px 4px 4px; box-shadow: var(--shadow); }
.focus-card img { width: 100%; height: 100%; min-height: 455px; object-fit: cover; transition: transform .55s ease; }
.focus-card:hover img { transform: scale(1.045); }
.focus-card-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(28,46,36,.04) 10%, rgba(34,52,41,.92) 100%); }
.focus-card-copy { position: absolute; inset: auto 44px 40px; display: flex; flex-direction: column; align-items: flex-start; }
.focus-card-copy small { margin-bottom: 14px; color: var(--teal-bright); font-size: 11px; font-weight: 900; letter-spacing: .15em; }
.focus-card-copy strong { max-width: 540px; font-size: clamp(30px, 3vw, 45px); font-weight: 500; line-height: 1.04; letter-spacing: -.035em; text-transform: uppercase; }
.focus-card-copy em { max-width: 520px; margin-top: 14px; color: rgba(255,255,255,.76); font-size: 14px; font-style: normal; line-height: 1.65; }
.focus-card-copy b { margin-top: 24px; color: var(--teal-bright); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }

.split-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 112px; }
.media-card { position: relative; margin: 0; }
.media-card img { width: 100%; aspect-ratio: 1 / 1.05; object-fit: cover; border-radius: 4px 52px 4px 4px; }
.media-card::after { content: ""; position: absolute; z-index: -1; right: -30px; bottom: -30px; width: 70%; height: 70%; background: var(--mist); }
.media-card figcaption { position: absolute; right: -25px; bottom: 38px; max-width: 220px; padding: 22px 26px; color: white; background: var(--teal); font-size: 13px; font-weight: 700; line-height: 1.4; }
.copy-block h2 { max-width: 650px; font-size: clamp(42px, 4.1vw, 64px); line-height: 1.08; }
.lead-copy { margin-top: 30px; color: var(--ink-soft); font-size: 17px; line-height: 1.8; white-space: pre-line; }
.mini-facts { display: grid; margin-top: 46px; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.mini-facts div { padding: 25px 18px 0 0; }
.mini-facts strong { display: block; color: var(--teal); font-size: 28px; font-weight: 500; }
.mini-facts span { display: block; margin-top: 5px; color: var(--ink-soft); font-size: 12px; }

.products-section { padding-top: 110px; background: #f7f9f5; }
.section-heading { display: grid; margin-bottom: 62px; grid-template-columns: 1.3fr .7fr; align-items: end; gap: 80px; }
.section-heading h2 { max-width: 800px; font-size: clamp(42px, 4vw, 62px); line-height: 1.08; }
.section-heading > p { padding-bottom: 8px; color: var(--ink-soft); font-size: 16px; line-height: 1.75; }
.section-heading.compact { display: block; max-width: 760px; }
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 34px; }
.product-card { overflow: hidden; background: white; border: 1px solid var(--line); border-radius: 4px 42px 4px 4px; transition: transform .3s ease, box-shadow .3s ease; }
.product-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.product-image { position: relative; display: block; overflow: hidden; }
.product-image img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; transition: transform .5s ease; }
.product-card:hover .product-image img { transform: scale(1.035); }
.product-image > span { position: absolute; top: 24px; left: 24px; padding: 10px 14px; color: white; background: var(--teal); font-size: 10px; font-weight: 900; letter-spacing: .14em; }
.product-card-body { position: relative; padding: 42px 44px 46px; }
.product-index { position: absolute; top: 42px; right: 42px; color: #b9c8c8; font-size: 14px; font-weight: 800; letter-spacing: .1em; }
.product-card h3 { max-width: 80%; font-size: 34px; line-height: 1.15; }
.product-card p { min-height: 118px; margin: 24px 0 30px; color: var(--ink-soft); line-height: 1.7; }

.technology { padding: 150px 0; color: white; background: var(--deep); }
.technology-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 110px; }
.technology-copy h2 { font-size: clamp(44px, 4.4vw, 68px); line-height: 1.06; }
.technology-copy > p:not(.eyebrow) { margin-top: 30px; color: rgba(255,255,255,.67); font-size: 17px; line-height: 1.8; }
.technology-visual { position: relative; }
.technology-visual img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 4px 48px 4px 4px; }
.metric-card { position: absolute; right: -32px; bottom: -32px; min-width: 210px; padding: 28px 30px; color: var(--deep); background: var(--teal-bright); }
.metric-card strong { display: block; font-size: 30px; font-weight: 500; }
.metric-card span { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
.check-list { padding: 0; margin: 38px 0 0; list-style: none; }
.check-list li { position: relative; padding: 15px 0 15px 34px; border-bottom: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.82); font-size: 15px; line-height: 1.5; }
.check-list li::before { content: "✓"; position: absolute; left: 2px; color: var(--teal-bright); font-weight: 900; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-card { min-height: 300px; padding: 42px 28px 38px; border-right: 1px solid var(--line); }
.process-card:last-child { border-right: 0; }
.process-card > span { color: var(--teal); font-size: 12px; font-weight: 900; letter-spacing: .15em; }
.process-card h3 { margin-top: 58px; font-size: 25px; line-height: 1.2; }
.process-card p { margin-top: 20px; color: var(--ink-soft); font-size: 14px; line-height: 1.72; }

.integrated-section { background: var(--mist); }
.integrated-grid { display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 110px; }
.integrated-images { display: grid; grid-template-columns: 1.25fr .75fr; gap: 18px; align-items: end; }
.integrated-images img { width: 100%; object-fit: cover; }
.integrated-images img:first-child { aspect-ratio: .85 / 1; border-radius: 4px 44px 4px 4px; }
.integrated-images img:last-child { aspect-ratio: .8 / 1; margin-bottom: -52px; }
.integrated-grid .button { margin-top: 36px; }

.contact-section { display: grid; min-height: 560px; grid-template-columns: 1fr 1fr; }
.contact-image { background-position: center; background-size: cover; }
.contact-panel { display: flex; padding: 80px max(48px, calc((100vw - var(--container)) / 2)); flex-direction: column; align-items: flex-start; justify-content: center; color: white; background: var(--teal); }
.contact-panel h2 { max-width: 650px; font-size: clamp(42px, 4vw, 62px); line-height: 1.06; }
.contact-panel > p:not(.eyebrow) { max-width: 620px; margin-top: 28px; color: rgba(255,255,255,.8); font-size: 17px; line-height: 1.75; }
.contact-panel .button { margin-top: 36px; }

.site-footer { padding: 90px 0 36px; color: #d5dfd8; background: #273a30; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, .7fr); gap: 70px; }
.footer-brand img { width: 250px; padding: 9px 12px; background: white; border-radius: 8px; }
.footer-brand p { max-width: 380px; margin-top: 28px; color: #81999d; font-size: 14px; line-height: 1.7; }
.footer-grid h3 { margin-bottom: 24px; color: white; font-size: 13px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.footer-grid a, .footer-grid span { display: block; margin: 13px 0; color: #8fa5a9; font-size: 14px; }
.footer-grid a:hover { color: var(--teal-bright); }
.footer-bottom { display: flex; margin-top: 70px; padding-top: 28px; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.09); color: #627b7f; font-size: 12px; }

/* Product detail */
.product-hero { padding: 110px 0 120px; background: #f3f6f0; }
.product-hero-grid { display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: 90px; }
.product-hero-copy h1 { font-size: clamp(56px, 6vw, 86px); line-height: .98; }
.product-hero-copy > p:not(.eyebrow) { margin-top: 30px; color: var(--ink-soft); font-size: 18px; line-height: 1.75; }
.product-hero-copy .button { margin-top: 38px; }
.back-link { display: inline-block; margin-bottom: 54px; color: var(--teal); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.product-hero-image { margin: 0; }
.product-hero-image img { width: 100%; aspect-ratio: 1.12 / 1; object-fit: cover; border-radius: 4px 60px 4px 4px; }
.detail-grid { display: grid; grid-template-columns: 1fr .7fr; gap: 120px; }
.detail-copy h2 { font-size: clamp(42px, 4vw, 62px); line-height: 1.08; }
.detail-copy > p:not(.eyebrow) { margin-top: 24px; color: var(--ink-soft); font-size: 17px; line-height: 1.85; }
.feature-panel { align-self: start; padding: 48px; color: white; background: var(--deep); border-radius: 4px 34px 4px 4px; }
.feature-panel h3 { font-size: 28px; }
.check-list-dark li { color: rgba(255,255,255,.8); }
.spec-section { padding: 120px 0; color: white; background: var(--teal); }
.spec-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 120px; }
.spec-heading h2 { font-size: 52px; line-height: 1.08; }
.spec-heading > p:not(.eyebrow) { margin-top: 28px; color: rgba(255,255,255,.72); line-height: 1.75; }
.spec-list { margin: 0; }
.spec-list div { display: grid; padding: 20px 0; grid-template-columns: 1fr 1fr; border-bottom: 1px solid rgba(255,255,255,.25); }
.spec-list dt { color: rgba(255,255,255,.72); font-size: 13px; }
.spec-list dd { margin: 0; font-size: 18px; font-weight: 700; }
.gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.gallery-grid figure { margin: 0; overflow: hidden; background: #f5f8f7; }
.gallery-grid img { width: 100%; aspect-ratio: 1.15/1; object-fit: cover; }
.gallery-grid figcaption { padding: 22px 24px; font-weight: 700; }
.inline-cta { padding: 95px 0; color: white; background: var(--deep); }
.inline-cta .container { display: flex; align-items: center; justify-content: space-between; gap: 80px; }
.inline-cta h2 { max-width: 820px; font-size: 44px; line-height: 1.12; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1100px) {
    .main-nav { gap: 24px; }
    .brand { width: 230px; }
    .partner-brand { width: 116px; }
    .distributor-note { display: none; }
    .split-grid, .technology-grid, .integrated-grid, .detail-grid { gap: 60px; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .process-card:nth-child(2) { border-right: 0; }
    .process-card:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .footer-grid { grid-template-columns: 1.3fr repeat(3, .8fr); gap: 34px; }
}

@media (max-width: 900px) {
    .section { padding: 100px 0; }
    .menu-button { display: block; }
    .main-nav { position: fixed; inset: 0; z-index: -1; display: flex; padding: 130px 34px 40px; flex-direction: column; align-items: stretch; gap: 0; color: white; background: var(--deep); opacity: 0; visibility: hidden; transform: translateY(-15px); transition: .25s ease; }
    .main-nav.open { opacity: 1; visibility: visible; transform: none; }
    .main-nav > a { padding: 20px 0; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 18px; }
    .main-nav .nav-cta { margin-top: 20px; text-align: center; }
    .site-header.scrolled .main-nav { color: white; }
    .split-grid, .technology-grid, .integrated-grid, .product-hero-grid, .detail-grid, .spec-grid { grid-template-columns: 1fr; }
    .solution-rail { width: min(700px, calc(100% - 48px)); grid-template-columns: 1fr; border-radius: 4px 28px 4px 4px; }
    .solution-rail a { min-height: 110px; border-right: 0; border-bottom: 1px solid var(--line); }
    .solution-rail a:last-child { border-bottom: 0; }
    .section-heading { grid-template-columns: 1fr; gap: 24px; }
    .focus-grid { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: 1fr; }
    .product-card p { min-height: 0; }
    .technology-grid { gap: 80px; }
    .integrated-grid { gap: 90px; }
    .contact-section { grid-template-columns: 1fr; }
    .contact-image { min-height: 380px; }
    .contact-panel { padding: 80px 32px; }
    .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
    .footer-grid > div:last-child { grid-column: 2 / 4; }
    .product-hero { padding-top: 80px; }
    .product-hero-image { grid-row: 1; }
    .product-hero-copy .back-link { margin-bottom: 40px; }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .inline-cta .container { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 640px) {
    .container { width: min(100% - 32px, var(--container)); }
    .site-header, .site-header.scrolled { height: 92px; }
    .brand-row { gap: 6px; }
    .brand { width: 166px; height: 48px; padding: 5px 7px; }
    .brand img { inset: 5px 7px; width: calc(100% - 14px); height: calc(100% - 10px); }
    .partner-brand { width: 82px; height: 48px; padding: 6px 7px; }
    .hero, .hero-content { min-height: 720px; }
    .hero::before { left: 16px; }
    .hero-content { padding-top: 120px; }
    .hero-content h1 { font-size: 49px; }
    .hero-lead { font-size: 17px; }
    .hero-actions { align-items: flex-start; flex-direction: column; }
    .hero-curve { right: 0; width: 100px; height: 100px; }
    .solution-rail { margin-top: -40px; }
    .solution-rail a { padding: 20px; }
    .focus-section { padding-top: 90px; }
    .focus-card, .focus-card img { min-height: 390px; }
    .focus-card-copy { inset: auto 24px 26px; }
    .focus-card-copy strong { font-size: 30px; }
    .copy-block h2, .section-heading h2, .technology-copy h2, .contact-panel h2 { font-size: 40px; }
    .split-grid { gap: 75px; }
    .media-card figcaption { right: 0; bottom: -28px; }
    .media-card::after { right: 0; }
    .mini-facts { grid-template-columns: 1fr; }
    .mini-facts div { padding: 18px 0; border-bottom: 1px solid var(--line); }
    .product-card-body { padding: 32px 26px 36px; }
    .product-card h3 { font-size: 30px; }
    .product-index { top: 34px; right: 26px; }
    .technology { padding: 100px 0 120px; }
    .metric-card { right: 0; bottom: -45px; }
    .process-grid { grid-template-columns: 1fr; }
    .process-card, .process-card:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--line); }
    .integrated-images { grid-template-columns: 1fr; }
    .integrated-images img:last-child { display: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / 3; }
    .footer-grid > div:last-child { grid-column: 1 / 3; }
    .footer-bottom { align-items: flex-start; flex-direction: column; gap: 16px; }
    .product-hero-copy h1 { font-size: 50px; }
    .product-hero-grid { gap: 55px; }
    .feature-panel { padding: 34px 26px; }
    .spec-heading h2 { font-size: 40px; }
    .spec-list div { grid-template-columns: 1fr; gap: 8px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .inline-cta h2 { font-size: 34px; }
}

/* Bilingual multi-page experience */
.inner-page .site-header { position: relative; color: var(--ink); background: white; border-bottom: 1px solid var(--line); }
.inner-page .brand-light { opacity: 0; }
.inner-page .brand-dark { opacity: 1; }
.inner-page .nav-cta { color: white; border-color: var(--teal); background: var(--teal); }
.main-nav { gap: 18px; font-size: 11px; }
.main-nav > a.active:not(.nav-cta)::after { right: 0; }
.language-link { display: grid; width: 42px; height: 42px; padding: 0!important; place-items: center; border: 1px solid currentColor; border-radius: 50%; }
.language-link::after { display: none; }

.inner-hero { position: relative; min-height: 610px; overflow: hidden; color: white; background: var(--deep) var(--hero-image) center/cover no-repeat; }
.inner-hero-overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(35,55,44,.94), rgba(62,89,70,.72) 52%, rgba(36,48,40,.3)); }
.inner-hero-content { position: relative; z-index: 1; display: flex; min-height: 610px; padding-block: 105px; flex-direction: column; justify-content: center; align-items: flex-start; }
.inner-hero h1 { max-width: 980px; color: white; font-size: clamp(54px, 6.3vw, 90px); line-height: 1; letter-spacing: -.052em; }
.inner-hero-content > p:not(.eyebrow) { max-width: 800px; margin-top: 30px; color: rgba(255,255,255,.8); font-size: 20px; line-height: 1.68; }
.breadcrumbs { display: flex; margin-bottom: 52px; align-items: center; gap: 12px; color: rgba(255,255,255,.65); font-size: 11px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.breadcrumbs a:hover { color: white; }

.intro-wide { display: grid; grid-template-columns: 1fr .8fr; align-items: end; gap: 110px; }
.intro-wide h2 { max-width: 760px; font-size: clamp(42px, 4.2vw, 66px); line-height: 1.08; }
.intro-wide > p { color: var(--ink-soft); font-size: 18px; line-height: 1.85; white-space: pre-line; }
.page-stats { display: grid; margin-top: 80px; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.page-stats div { padding: 32px 28px; border-right: 1px solid var(--line); }
.page-stats div:last-child { border-right: 0; }
.page-stats strong { display: block; color: var(--teal); font-size: 34px; font-weight: 500; }
.page-stats span { display: block; margin-top: 6px; color: var(--ink-soft); font-size: 12px; font-weight: 700; }
.page-product-section { padding-top: 30px; background: #f6faf9; }

.editorial-section { overflow: hidden; }
.editorial-alt { background: var(--mist); }
.editorial-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 110px; }
.editorial-alt .editorial-media { order: 2; }
.editorial-media { margin: 0; }
.editorial-media img { width: 100%; aspect-ratio: 1.15/1; object-fit: cover; border-radius: 4px 50px 4px 4px; box-shadow: var(--shadow); }
.feature-list { display: grid; margin: 38px 0 0; padding: 0; grid-template-columns: 1fr 1fr; gap: 0 24px; list-style: none; border-top: 1px solid var(--line); }
.feature-list li { position: relative; padding: 18px 0 18px 28px; color: var(--ink-soft); border-bottom: 1px solid var(--line); line-height: 1.55; }
.feature-list li::before { content: "✓"; position: absolute; left: 2px; color: var(--teal); font-weight: 900; }

.reference-section { background: var(--deep); color: white; }
.reference-section .section-heading h2 { color: white; }
.reference-section .section-heading > p { margin-top: 24px; color: rgba(255,255,255,.7); }
.reference-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.16); border-left: 1px solid rgba(255,255,255,.16); }
.reference-card { min-height: 190px; padding: 30px; border-right: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); }
.reference-card span { display: block; margin-bottom: 42px; color: var(--teal-bright); font-size: 11px; font-weight: 900; letter-spacing: .12em; }
.reference-card h3 { color: white; font-size: 19px; line-height: 1.45; letter-spacing: -.015em; }
.media-gallery-section { background: #f7f9f5; }
.municipal-gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: 24px; }
.municipal-gallery figure { position: relative; margin: 0; overflow: hidden; background: var(--deep); border-radius: 3px 34px 3px 3px; }
.municipal-gallery figure:nth-child(1), .municipal-gallery figure:nth-child(2) { grid-column: span 6; }
.municipal-gallery figure:nth-child(n+3) { grid-column: span 4; }
.municipal-gallery img { width: 100%; aspect-ratio: 16/10; object-fit: cover; transition: transform .45s ease; }
.municipal-gallery figure:hover img { transform: scale(1.035); opacity: .9; }
.municipal-gallery figcaption { position: absolute; right: 0; bottom: 0; left: 0; padding: 42px 24px 20px; color: white; background: linear-gradient(transparent, rgba(32,52,40,.88)); font-size: 13px; font-weight: 750; }
.video-gallery-section { background: #f5f8f3; }
.video-gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px; }
.media-video-card { overflow: hidden; background: white; border: 1px solid var(--line); border-radius: 4px 38px 4px 4px; box-shadow: 0 18px 55px rgba(45,69,56,.1); }
.video-frame { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--deep); }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.media-video-copy { position: relative; min-height: 230px; padding: 34px 38px 38px; }
.media-video-copy > span { position: absolute; top: 36px; right: 36px; color: #b9c8c0; font-size: 12px; font-weight: 900; letter-spacing: .12em; }
.media-video-copy h3 { max-width: calc(100% - 55px); font-size: 29px; line-height: 1.18; }
.media-video-copy p { margin: 20px 0 26px; color: var(--ink-soft); font-size: 15px; line-height: 1.7; }
.media-video-copy .text-link { margin-top: 24px; }
.media-video-copy .text-link b { font-size: 17px; }

.content-band { overflow: hidden; }
.content-band-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 110px; }
.content-band:nth-of-type(even) .content-band-media { order: 2; }
.content-band-media img { width: 100%; aspect-ratio: 1.12/1; object-fit: cover; border-radius: 4px 50px 4px 4px; }
.content-band-dark { color: white; background: var(--deep); }
.content-band-dark .lead-copy { color: rgba(255,255,255,.7); }
.check-list-light li { color: var(--ink-soft); border-color: var(--line); }
.inline-cta .container > div > p:last-child { max-width: 720px; margin-top: 18px; color: rgba(255,255,255,.68); line-height: 1.7; }

.process-detail .process-grid { grid-template-columns: repeat(3, 1fr); }
.process-detail .process-card { min-height: 230px; }
.process-detail .process-card h3 { margin-top: 38px; font-size: 19px; line-height: 1.5; }
.applications-section { background: var(--mist); }
.applications-section h2 { font-size: clamp(42px, 4vw, 62px); line-height: 1.08; }
.feature-list-large { grid-template-columns: 1fr; margin-top: 0; }
.feature-list-large li { padding-block: 22px; font-size: 17px; }
.dimension-section { background: #f7faf9; }
.dimension-table-wrap { overflow-x: auto; border: 1px solid var(--line); background: white; }
.dimension-table { width: 100%; border-collapse: collapse; }
.dimension-table th, .dimension-table td { padding: 17px 22px; border-bottom: 1px solid var(--line); text-align: left; }
.dimension-table th { color: var(--teal); background: var(--mist); font-size: 11px; letter-spacing: .09em; text-transform: uppercase; }
.dimension-table td { color: var(--ink-soft); font-size: 14px; }
.dimension-table tr:last-child td { border-bottom: 0; }

.contact-details-section { background: #f3f6f0; }
.contact-layout { display: grid; grid-template-columns: 1.25fr .75fr; gap: 34px; align-items: start; }
.contact-form-card { padding: 58px; background: white; border: 1px solid var(--line); border-radius: 4px 42px 4px 4px; box-shadow: var(--shadow); }
.contact-form-card h2 { font-size: clamp(38px, 4vw, 58px); line-height: 1.08; }
.contact-form-card > p:not(.eyebrow) { margin-top: 22px; color: var(--ink-soft); line-height: 1.75; }
.contact-form { display: grid; margin-top: 38px; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-form label { display: flex; flex-direction: column; gap: 9px; color: var(--ink); font-size: 12px; font-weight: 750; }
.contact-form input, .contact-form textarea { width: 100%; padding: 13px 15px; color: var(--ink); border: 1px solid #ccd9d7; background: #fbfdfc; outline: none; }
.contact-form input { min-height: 52px; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(92,125,72,.12); background: white; }
.contact-form .span-two { grid-column: 1/3; }
.consent-field { flex-direction: row!important; align-items: flex-start; color: var(--ink-soft)!important; font-weight: 500!important; line-height: 1.55; }
.consent-field input { width: 18px; min-height: 18px; margin-top: 2px; }
.honeypot { position: absolute!important; left: -9999px!important; width: 1px!important; height: 1px!important; opacity: 0!important; }
.contact-info-card { padding: 44px; color: white; background: var(--teal); border-radius: 4px 34px 4px 4px; }
.contact-info-card > div { padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.2); }
.contact-info-card > div:first-child { padding-top: 0; }
.contact-info-card > div:last-child { padding-bottom: 0; border: 0; }
.contact-info-card h3 { margin-bottom: 13px; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.contact-info-card a, .contact-info-card p { display: block; margin: 7px 0; color: rgba(255,255,255,.82); line-height: 1.65; }
.contact-team-list { display: grid; gap: 12px; }
.contact-person-card { padding: 18px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.14); border-radius: 8px; }
.contact-person-card strong { display: block; margin-bottom: 9px; color: white; font-size: 16px; }
.contact-person-card a { margin: 4px 0; font-size: 13px; overflow-wrap: anywhere; }
.whatsapp-link { display: inline-flex!important; margin-top: 12px!important; padding: 9px 13px; color: var(--deep)!important; background: var(--teal-bright); border-radius: 4px; font-size: 12px; font-weight: 800; }
.form-success, .form-error { margin-top: 28px; padding: 17px 18px; font-size: 14px; line-height: 1.55; }
.form-success { color: #0e6558; background: #dff4ef; border: 1px solid #bce4da; }
.form-error { color: #8c2e2e; background: #fff0f0; border: 1px solid #f2caca; }
.form-error ul { margin: 0; padding-left: 18px; }
.map-section iframe { display: block; width: 100%; height: 520px; border: 0; }
.contact-checklist { background: white; }
.footer-links { display: flex; gap: 24px; }

@media (max-width: 1180px) {
    .main-nav { gap: 16px; font-size: 10px; }
    .main-nav .nav-cta { padding-inline: 14px; }
    .editorial-grid, .content-band-grid, .intro-wide { gap: 60px; }
}

@media (max-width: 900px) {
    .inner-page .main-nav { color: white; }
    .inner-page .language-link { margin-top: 20px; }
    .intro-wide, .editorial-grid, .content-band-grid, .contact-layout { grid-template-columns: 1fr; }
    .editorial-alt .editorial-media, .content-band:nth-of-type(even) .content-band-media { order: 0; }
    .page-stats { grid-template-columns: 1fr; }
    .page-stats div { border-right: 0; border-bottom: 1px solid var(--line); }
    .page-stats div:last-child { border-bottom: 0; }
    .process-detail .process-grid { grid-template-columns: 1fr 1fr; }
    .reference-grid { grid-template-columns: repeat(2, 1fr); }
    .municipal-gallery figure, .municipal-gallery figure:nth-child(n) { grid-column: span 6; }
    .video-gallery { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .inner-hero, .inner-hero-content { min-height: 590px; }
    .inner-hero-content { padding-block: 80px; }
    .inner-hero h1 { font-size: 48px; }
    .inner-hero-content > p:not(.eyebrow) { font-size: 17px; }
    .breadcrumbs { margin-bottom: 38px; }
    .feature-list, .process-detail .process-grid, .contact-form { grid-template-columns: 1fr; }
    .contact-form .span-two { grid-column: auto; }
    .contact-form-card { padding: 36px 24px; }
    .contact-info-card { padding: 32px 24px; }
    .map-section iframe { height: 390px; }
    .page-stats { margin-top: 50px; }
    .reference-grid { grid-template-columns: 1fr; }
    .reference-card { min-height: 150px; }
    .municipal-gallery { grid-template-columns: 1fr; }
    .municipal-gallery figure, .municipal-gallery figure:nth-child(n) { grid-column: auto; }
    .media-video-copy { min-height: 0; padding: 28px 24px 32px; }
    .media-video-copy h3 { font-size: 25px; }
}
