:root {
  --page: #f3f7fb;
  --card: #ffffff;
  --ink: #06223d;
  --muted: #607184;
  --navy: #013267;
  --orange: #0b5ea8;
  --copper: #3f7fb3;
  --line: #d8e5f0;
  --radius-lg: 22px;
  --radius-md: 16px;
  --shadow: 0 15px 35px rgba(1, 50, 103, 0.1);
  --content: 1760px;
  --gutter: clamp(16px, 3vw, 58px);
  --page-gutter: var(--gutter);
  --space-1: 8px;
  --space-2: 13px;
  --space-3: 21px;
  --space-4: 34px;
  --space-5: 44px;
  --space-6: 64px;
  --site-header-flow: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; background: var(--page); color: var(--ink); font-family: "Manrope", Arial, sans-serif; }
main p, main li { font-weight: 400; }
main h1, main h2, main h3, main strong { font-weight: 800; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
img { display: block; max-width: 100%; }
.site-motion { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.75,.25,1) var(--motion-delay,0ms), transform .7s cubic-bezier(.2,.75,.25,1) var(--motion-delay,0ms); }
.site-motion.site-motion--side { transform: translateX(24px); }
.site-motion.is-visible { opacity: 1; transform: translate3d(0,0,0); }
.page-shell { width: 100%; min-width: 0; margin: 0; padding-top: var(--site-header-flow); overflow: clip; background: var(--page); }
.site-header { width: 100%; height: 92px; display: grid; grid-template-columns: auto minmax(0, 1fr) auto; grid-template-areas: "brand nav actions"; align-items: center; position: fixed; inset: 0 0 auto; z-index: 100; padding: 0 max(var(--gutter), calc((100% - var(--content)) / 2)); border-bottom: 1px solid transparent; background: rgba(251,253,253,.94); backdrop-filter: blur(14px); transform: translate3d(0,0,0); will-change: height, transform; transition: height .28s ease, transform .24s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease; }
.site-header.is-compact { height: 72px; border-bottom-color: rgba(1,50,103,.09); background: rgba(251,253,253,.98); box-shadow: 0 12px 30px rgba(18,19,27,.08); }
.primary-nav { grid-area: nav; display: flex; align-items: center; justify-content: center; gap: clamp(15px, 1.15vw, 22px); min-width: 0; }
.primary-nav a, .nav-trigger { white-space: nowrap; font-size: 13.5px; font-weight: 800; text-transform: uppercase; }
.nav-trigger { display: inline-flex; align-items: center; gap: 7px; padding: 16px 0; border: 0; background: transparent; color: inherit; cursor: pointer; }
.primary-nav i { font-size: 9px; }
.nav-item { position: relative; }
.nav-panel { min-width: 290px; position: absolute; top: calc(100% + 23px); left: 50%; z-index: 25; padding: 18px; border: 1px solid #e2e7e8; border-radius: 14px; background: #fff; color: var(--ink); box-shadow: 0 24px 60px rgba(18,19,27,.15); opacity: 0; visibility: hidden; transform: translate(-50%, 10px); transition: opacity .2s ease, transform .2s ease, visibility .2s ease; }
.nav-panel a { white-space: normal; }
.nav-item:hover > .nav-panel, .nav-item:focus-within > .nav-panel, .nav-item.is-open > .nav-panel { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.nav-item:hover > .nav-trigger, .nav-item:focus-within > .nav-trigger, .nav-item.is-open > .nav-trigger { color: var(--orange); }
.nav-item:hover > .nav-trigger i, .nav-item:focus-within > .nav-trigger i, .nav-item.is-open > .nav-trigger i { transform: rotate(180deg); }
.nav-trigger i { transition: transform .2s ease; }
.nav-panel-kicker { margin: 0 0 10px; color: var(--orange); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.nav-panel--compact > a { display: grid; gap: 4px; padding: 12px; border-radius: 9px; text-transform: none; }
.nav-panel--compact > a:hover { background: #eaf2f8; }
.nav-panel strong { font-size: 14px; }
.nav-panel small { color: var(--muted); font-size: 11px; font-weight: 500; line-height: 1.5; text-transform: none; }
.nav-mega { width: min(760px, calc(100vw - 48px)); display: grid; grid-template-columns: 230px 1fr; gap: 26px; padding: 26px; }
.nav-mega-intro { padding: 18px; border-radius: 11px; background: var(--navy); color: #fff; }
.nav-mega-intro h3 { margin: 16px 0 26px; font-size: 24px; line-height: 1.15; letter-spacing: -.035em; }
.nav-mega-intro a { display: inline-flex; align-items: center; gap: 9px; color: #fff; font-size: 11px; }
.nav-mega-intro a i { color: var(--orange); }
.nav-mega-links { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.nav-mega-links > a { display: flex; align-items: flex-start; gap: 13px; padding: 14px; border-radius: 10px; text-transform: none; }
.nav-mega-links > a:hover { background: #eaf2f8; }
.nav-mega-links > a > i { width: 22px; margin-top: 3px; color: var(--orange); font-size: 17px; text-align: center; }
.nav-mega-links > a span { display: grid; gap: 5px; }
.nav-mega-links--three { grid-template-columns: repeat(3, 1fr); }
.nav-mega-links--three > a { min-height: 62px; align-items: center; border: 1px solid #e4e9ea; }
.nav-mega--applications { width: min(920px, calc(100vw - 48px)); }
.brand { grid-area: brand; display: inline-flex; align-items: center; }
.brand-logo { width: 142px; height: auto; }
.header-actions { grid-area: actions; justify-self: end; display: flex; align-items: center; gap: 13px; }
.language-selector { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 800; }
.language-selector i { font-size: 8px; }
.language-menu { position: relative; }
.language-menu > .language-selector { min-width: 48px; padding: 9px 8px; border: 0; justify-content: center; color: var(--ink); background: transparent; cursor: pointer; }
.language-menu__panel { position: absolute; z-index: 120; top: calc(100% + 12px); right: 0; width: 190px; padding: 8px; border: 1px solid rgba(1,50,103,.1); border-radius: 13px; display: grid; gap: 3px; background: #fff; box-shadow: 0 18px 45px rgba(18,19,27,.15); opacity: 0; visibility: hidden; transform: translateY(-7px); transition: .2s ease; }
.language-menu.is-open .language-menu__panel { opacity: 1; visibility: visible; transform: translateY(0); }
.language-menu__panel a { min-height: 42px; padding: 8px 10px; border-radius: 9px; display: grid; grid-template-columns: 32px 1fr; align-items: center; gap: 8px; color: var(--ink); }
.language-menu__panel a:hover, .language-menu__panel a[aria-current="page"] { background: #edf5fb; color: var(--brand); }
.language-menu__panel strong { font-size: 11px; }.language-menu__panel span { color: var(--muted); font-size: 11px; }
.phone-link { font-size: 12px; font-weight: 800; }
.phone-link i { color: var(--orange); margin-right: 9px; }
.button { min-height: 46px; padding: 7px 9px 7px 22px; display: inline-flex; align-items: center; justify-content: center; gap: 16px; border: 0; border-radius: 999px; font-size: 13px; font-weight: 800; text-transform: uppercase; transition: transform .25s ease, background .25s ease, color .25s ease; }
.button:hover { transform: translateY(-2px); }
.button span { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: #fff; color: var(--orange); }
.button--orange { background: var(--orange); color: #fff; }
.button--light { background: #fff; color: var(--ink); }
.button--light span { background: var(--orange); color: #fff; }
.button--outline { border: 1px solid #adb8bb; background: transparent; color: var(--ink); }
.button--outline span { background: var(--orange); color: #fff; }
.button--ghost-light { border: 1px solid rgba(255,255,255,.75); background: rgba(18,19,27,.18); color: #fff; }
.button--ghost-light span { background: #fff; color: var(--orange); }
.menu-toggle { display: none; width: 42px; height: 42px; border: 0; border-radius: 50%; background: var(--ink); color: #fff; }
.sr-only { width: 1px; height: 1px; position: absolute; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; clip-path: inset(50%); }

main > section, main > .marquee-stack { width: min(calc(100% - (var(--gutter) * 2)), var(--content)); margin-left: auto; margin-right: auto; }
.hero { height: clamp(620px, calc((100vw - (var(--gutter) * 2)) / 1.78), 850px); position: relative; overflow: hidden; border-radius: var(--radius-lg); }
.hero-slides { position: absolute; inset: 0; }
.hero-slide { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; opacity: 0; transform: scale(1.025); transition: opacity .85s ease, transform 6.5s ease; }
.hero-slide img { width:100%;height:100%;display:block;object-fit:cover; }
.hero-slide.is-active { opacity: 1; transform: scale(1); }
.hero-shade { position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(0,10,22,var(--hero-overlay,.58)) 0%, rgba(0,10,22,.33) 38%, rgba(0,10,22,.2) 70%, rgba(0,10,22,.36) 100%), linear-gradient(180deg, rgba(0,8,18,.18) 0%, rgba(0,8,18,.22) 44%, rgba(0,8,18,.58) 100%); pointer-events: none;transition:background .4s ease; }
.hero-content { position: absolute; left: 50%; top: 50%; z-index: 2; width: min(900px, calc(100% - 42px)); transform: translate(-50%, -40%); color: #fff; text-align: center; text-shadow: 0 3px 24px rgba(0,0,0,.42); }
.hero-copy-slide{display:none}.hero-copy-slide.is-active{display:block;animation:hero-copy-in .5s ease both}@keyframes hero-copy-in{from{opacity:0;transform:translateY(10px)}to{opacity:1;transform:none}}
.hero-content--left{text-align:left;left:9%;transform:translate(0,-40%);width:min(760px,82%)}.hero-content--left .hero-actions{justify-content:flex-start}.hero-content--right{text-align:right;left:auto;right:9%;transform:translate(0,-40%);width:min(760px,82%)}.hero-content--right .hero-actions{justify-content:flex-end}
.eyebrow { margin: 0 0 14px; color: var(--orange); font-size: 11px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.eyebrow--light { display: inline-block; padding: 7px 13px; border: 1px solid rgba(255,255,255,.65); border-radius: 99px; color: #fff; }
.hero h1 { margin: 15px 0 18px; font-size: clamp(46px, 4.4vw, 74px); line-height: 1.12; letter-spacing: -.052em; }
.hero-summary { max-width: 760px; margin: 0 auto 26px; color: rgba(255,255,255,.85); font-size: clamp(13px, 1vw, 17px); line-height: 1.6; }
.hero-actions { display: flex; justify-content: center; gap: 12px; }
.hero-dots { position: absolute; right: 0; top: 50%; z-index: 3; display: grid; gap: 9px; padding: 20px 12px; border-radius: 18px 0 0 18px; background: #fff; box-shadow: 0 12px 30px rgba(0,0,0,.14); transform: translateY(-50%); }
.hero-dots button { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 50%; background: #a9afb0; cursor: pointer; transition: height .25s ease, border-radius .25s ease, background .25s ease; }
.hero-dots button.is-active { height: 18px; border-radius: 999px; background: var(--orange); }

.hero-links { width: min(88%, 1480px); position: relative; z-index: 6; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); overflow: visible; margin: -72px auto clamp(90px, 8vw, 130px); background: transparent; filter: drop-shadow(0 22px 28px rgba(13,18,31,.12)); }
.hero-link-card { min-height: clamp(280px, 20vw, 340px); position: relative; isolation: isolate; overflow: visible; border-right: 1px solid rgba(255,255,255,.18); background: var(--navy); color: #fff; }
.hero-link-card:nth-child(even) { background: var(--orange); }
.hero-link-card:last-child { border-right: 0; }
.hero-link-card::before { content: ""; position: absolute; inset: 0; z-index: -2; background: linear-gradient(180deg, rgba(255,255,255,.06), transparent 58%, rgba(0,68,170,.14)); pointer-events: none; }
.hero-link-card::after { content: none; }
.hero-link-copy { position: relative; z-index: 2; display: flex; align-items: flex-start; flex-direction: column; padding: clamp(22px, 2vw, 34px); }
.hero-link-copy strong { font-family: "Barlow Condensed", sans-serif; font-size: clamp(24px, 1.7vw, 32px); font-weight: 500; line-height: .95; letter-spacing: .18em; text-transform: uppercase; }
.hero-link-copy small { margin-top: 8px; color: rgba(255,255,255,.78); font-size: clamp(11px, .72vw, 13px); }
.hero-link-proof { display: inline-flex; align-items: center; gap: 7px; margin-top: 11px; color: #fff; font-size: clamp(9px, .62vw, 11px); font-weight: 700; line-height: 1.3; }
.hero-link-proof i { font-size: 10px; }
.hero-links--products .hero-link-copy strong { max-width: 12ch; font-size: clamp(23px, 1.65vw, 31px); line-height: .98; }
.hero-links--products .hero-link-copy small { margin-top: 8px; }
.hero-links--products .hero-link-proof { margin-top: 9px; }
.hero-links--products .hero-link-copy small,.hero-links--products .hero-link-proof,.hero-links--products .hero-link-arrow{display:none}
.site-header{height:78px}.site-header.is-compact{height:62px}.site-header.is-hidden{pointer-events:none;transform:translate3d(0,-100%,0)}
.site-header.is-compact .brand-logo{width:100px;max-height:44px;object-fit:contain}
.language-selector{gap:6px}.language-flag{width:18px;height:12px;display:inline-block;flex:0 0 auto;border:1px solid rgba(6,34,61,.12);border-radius:2px;object-fit:cover;vertical-align:-2px;box-shadow:0 1px 2px rgba(6,34,61,.08)}.language-flag--code{height:14px;display:inline-grid;place-items:center;color:var(--navy);background:#edf4f8;font-size:7px;line-height:1}
.global-floaters{position:fixed;right:20px;bottom:20px;z-index:90;display:grid;justify-items:end;gap:9px}.global-floaters a,.global-floaters button{border:0;box-shadow:0 10px 28px rgba(1,50,103,.2);cursor:pointer}.float-whatsapp,.float-backtop{width:48px;height:48px;border-radius:50%;display:grid;place-items:center;color:#fff}.float-whatsapp{background:#25d366;font-size:21px}.float-backtop{background:var(--navy);font-size:14px;opacity:0;visibility:hidden;transform:translateY(8px);transition:.2s}.float-backtop.is-visible{opacity:1;visibility:visible;transform:none}.float-ai{min-height:42px;padding:0 15px;border-radius:999px;display:flex;align-items:center;gap:8px;color:#fff;background:var(--orange);font-size:10px;font-weight:800}.float-ai i{font-size:13px}.rfq-sticky-bar{position:fixed;top:50px;right:0;left:0;z-index:85;min-height:44px;padding:7px max(var(--gutter),calc((100% - var(--content))/2));display:flex;align-items:center;justify-content:center;gap:18px;color:#fff;background:var(--navy);box-shadow:0 8px 22px rgba(1,36,72,.18);transform:translateY(-130%);transition:.25s}.rfq-sticky-bar.is-visible{transform:none}.rfq-sticky-bar span{font-size:11px;font-weight:700}.rfq-sticky-bar a{padding:8px 13px;border-radius:999px;color:var(--navy);background:#fff;font-size:9px;font-weight:850}.language-consent{position:fixed;right:18px;bottom:18px;z-index:120;width:min(390px,calc(100% - 36px));padding:16px;border:1px solid #dce5ec;border-radius:14px;background:#fff;box-shadow:0 18px 50px rgba(1,50,103,.22)}.language-consent strong,.language-consent p{display:block;margin:0}.language-consent strong{color:var(--navy);font-size:13px}.language-consent p{margin-top:6px;color:#687b8c;font-size:10px;line-height:1.5}.language-consent div{margin-top:12px;display:flex;gap:8px}.language-consent button{min-height:34px;padding:0 12px;border:1px solid #d7e1e8;border-radius:8px;background:#fff;color:var(--navy);font:inherit;font-size:9px;font-weight:800;cursor:pointer}.language-consent button:first-child{border-color:var(--orange);color:#fff;background:var(--orange)}.footer-social{margin-top:14px;display:flex!important;align-items:center;gap:8px}.footer-social a{width:34px;height:34px;margin:0!important;border:1px solid rgba(255,255,255,.22);border-radius:50%;display:grid!important;place-items:center;color:#fff!important}.footer-whatsapp{width:fit-content;padding:8px 11px;border-radius:7px;color:#fff!important;background:#25d366}
@media(max-width:680px){.global-floaters{right:12px;bottom:12px}.float-whatsapp{width:54px;height:54px}.float-ai{max-width:54px;padding:0 15px;overflow:hidden;white-space:nowrap}.float-ai span{display:none}.rfq-sticky-bar{padding-right:12px;padding-left:12px;justify-content:space-between}.rfq-sticky-bar span{max-width:62%;font-size:9px}}
.hero-link-arrow { width: 28px; height: 28px; display: grid; place-items: center; margin-top: 12px; background: #fff; color: var(--navy); font-size: 9px; transition: transform .25s ease, background .25s ease; }
.hero-link-card:hover .hero-link-arrow { transform: translateX(5px); background: #dceaf5; color: var(--navy); }
.hero-link-card > img { width: 76%; height: 68%; position: absolute; right: -7%; bottom: -14%; z-index: 1; object-fit: cover; object-position: center; filter: saturate(.9) contrast(1.03) drop-shadow(0 18px 16px rgba(3,35,83,.2)); transition: transform .35s ease; }
.hero-link-card:hover { z-index: 3; }
.hero-link-card:hover > img { transform: translateY(-6px); }
.hero-links--products { gap: clamp(8px, .7vw, 12px); filter: none; }
.hero-links--products .hero-link-card { min-width: 0; min-height: clamp(340px, 24vw, 400px); overflow: hidden; contain: paint; border: 1px solid rgba(255,255,255,.14); box-shadow: 0 18px 30px rgba(13,18,31,.12); transition: transform .28s ease, box-shadow .28s ease; }
.hero-links--products .hero-link-card:hover { z-index: 1; transform: translateY(-5px); box-shadow: 0 24px 38px rgba(13,18,31,.19); }
.hero-links--products .hero-link-copy strong { min-height: 2.94em; }
.hero-links--products .hero-link-card > img { width: min(78%, 290px); max-width: 100%; height: 58%; top: auto; right: 0; bottom: 0; left: auto; object-fit: cover; object-position: center; filter: saturate(.94) contrast(1.04); transform: none; }
.hero-links--products .hero-link-card:hover > img { transform: scale(1.015); transform-origin: right bottom; filter: saturate(1) contrast(1.05); }

.feature-grid { width: calc(100% - (var(--gutter) * 2)); display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(10px, 1vw, 18px); margin: 0 auto clamp(70px, 7vw, 110px); }
.feature-card { min-height: 330px; position: relative; display: flex; flex-direction: column; overflow: hidden; padding: clamp(24px, 2vw, 34px); border: 1px solid rgba(1,50,103,.09); border-radius: 24px; background: #fff; box-shadow: 0 16px 38px rgba(1,50,103,.06); transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease; }
.feature-card:hover { z-index: 2; transform: translateY(-7px); border-color: rgba(11,94,168,.22); box-shadow: 0 24px 48px rgba(1,50,103,.13); }
.feature-card--navy { border-color: var(--navy); background: var(--navy); color: #fff; }
.feature-card--sky { border-color: #d2e8f8; background: #eaf5fc; }
.feature-card--blue { border-color: var(--orange); background: var(--orange); color: #fff; }
.feature-card__top { display: flex; align-items: center; justify-content: space-between; }
.feature-card__index { color: #9aabbc; font-family: "Barlow Condensed", sans-serif; font-size: 18px; font-weight: 600; letter-spacing: .1em; }
.feature-card--navy .feature-card__index, .feature-card--blue .feature-card__index { color: rgba(255,255,255,.58); }
.feature-card__icon { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 15px; background: #eaf3fa; color: var(--orange); font-size: 17px; transform: rotate(-3deg); transition: transform .28s ease; }
.feature-card:hover .feature-card__icon { transform: rotate(3deg) scale(1.05); }
.feature-card--navy .feature-card__icon, .feature-card--blue .feature-card__icon { background: rgba(255,255,255,.14); color: #fff; }
.feature-card__copy { display: block; margin-top: auto; padding-top: 44px; }
.feature-card__copy small { display: block; margin-bottom: 10px; color: var(--orange); font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.feature-card--navy .feature-card__copy small, .feature-card--blue .feature-card__copy small { color: #9dd0f4; }
.feature-card h3 { max-width: 18ch; margin: 0 0 13px; font-size: clamp(20px, 1.45vw, 27px); line-height: 1.12; letter-spacing: -.025em; }
.feature-card p { max-width: 31ch; margin: 0; color: var(--muted); font-size: 11px; line-height: 1.65; }
.feature-card--navy p, .feature-card--blue p { color: rgba(255,255,255,.72); }
.feature-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--line); color: var(--navy); font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.feature-card--navy .feature-card__footer, .feature-card--blue .feature-card__footer { border-top-color: rgba(255,255,255,.18); color: #fff; }
.feature-card__footer i { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; background: var(--navy); color: #fff; font-size: 9px; transition: transform .25s ease, background .25s ease; }
.feature-card--navy .feature-card__footer i, .feature-card--blue .feature-card__footer i { background: #fff; color: var(--navy); }
.feature-card:hover .feature-card__footer i { transform: translateX(4px); }


.about-section { min-height: 720px; display: grid; grid-template-columns: minmax(0, .96fr) minmax(0, 1.14fr); gap: clamp(55px, 5vw, 96px); padding: var(--space-5) 0 var(--space-6); align-items: center; }
.about-images { min-height: 650px; position: relative; }
.about-main-image { width: 72%; height: 650px; object-fit: cover; border-radius: var(--radius-lg); }
.about-detail-image { position: absolute; right: 0; bottom: 0; width: 47%; height: 305px; object-fit: cover; border: 12px solid var(--page); border-radius: var(--radius-lg); }
.about-copy { min-width: 0; align-self: center; }
.about-copy h2, .section-heading h2, .site-footer h2 { margin: 0; font-size: clamp(34px, 3.25vw, 58px); line-height: 1.08; letter-spacing: -.05em; }
.about-copy h2 { max-width: 820px; }
.about-copy h2 em { display: inline-block; margin-inline-start: .12em; }
h2 em { color: var(--orange); font-style: normal; }
.solutions h2 em, .content-section--dark h2 em, .cta-panel h2 em { color: #9dd0f4; }
.tab-list { display: flex; gap: 10px; margin: var(--space-4) 0; }
.tab { padding: 15px 25px; border: 0; border-radius: 99px; background: #fff; color: var(--ink); cursor: pointer; font-size: 11px; font-weight: 800; text-transform: uppercase; transition:color .25s ease,background .25s ease,box-shadow .25s ease,transform .25s ease; }
.tab:hover { transform: translateY(-2px); box-shadow: 0 9px 22px rgba(2,46,88,.09); }
.tab:focus-visible { outline: 3px solid rgba(11,94,168,.22); outline-offset: 3px; }
.tab.is-active { color: #fff; background: var(--orange); box-shadow: 0 10px 24px rgba(0,104,184,.18); }
.tab-panel { width: min(100%, 650px); min-height: 188px; margin-left: 0; color: var(--muted); font-size: 14px; line-height: 1.8; opacity:1; transform:translateX(0); transition:opacity .18s ease,transform .18s ease; will-change:opacity,transform; }
.tab-panel.is-leaving { opacity:0; transform:translateX(-12px); }
.tab-panel.is-entering { animation:about-tab-enter .38s cubic-bezier(.22,.72,.25,1) both; }
@keyframes about-tab-enter { from { opacity:0; transform:translateX(16px); } to { opacity:1; transform:translateX(0); } }
.tab-panel ul { margin: 22px 0 0; padding: 0; list-style: none; color: var(--ink); font-weight: 700; }
.tab-panel li { margin: 6px 0; }
.tab-panel i { margin-right: 8px; color: var(--orange); }
.about-actions { display: flex; align-items: center; justify-content: flex-start; gap: clamp(34px, 4vw, 72px); margin-top: var(--space-3); }
.call-chip { display: flex; align-items: center; gap: 12px; }
.call-chip > span { width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%; background: var(--orange); color: #fff; box-shadow: 0 10px 24px rgba(0,104,184,.2); transition:transform .25s ease,box-shadow .25s ease; }
.call-chip:hover > span { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(0,104,184,.28); }
.call-chip small { color: var(--muted); font-size: 12px; line-height: 1.5; }
@media (prefers-reduced-motion: reduce) { .tab,.tab-panel,.call-chip>span { animation:none!important;transition:none!important;transform:none!important; } }

.marquee-stack { display: grid; overflow: hidden; margin-top: 18px; margin-bottom: 18px; border-radius: 18px; }
.marquee { height: 92px; display: flex; align-items: center; overflow: hidden; white-space: nowrap; }
.marquee-track { width: max-content; display: flex; align-items: center; will-change: transform; animation: marquee-left 34s linear infinite; }
.marquee-track span { flex: 0 0 auto; padding-right: 52px; font-size: clamp(38px, 4.1vw, 70px); font-weight: 800; line-height: 1; letter-spacing: -.04em; }
.marquee i { margin: 0 42px; font-size: .42em; }
.marquee--outline { color: transparent; background: transparent; -webkit-text-stroke: 1px #c5d1dc; }
.marquee--solid { color: #fff; background: var(--orange); }
.marquee--solid .marquee-track { animation-name: marquee-right; animation-duration: 38s; }
@keyframes marquee-left { to { transform: translateX(-50%); } }
@keyframes marquee-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.solutions { padding: 72px 50px 50px; border-radius: var(--radius-lg); background: var(--navy); color: #fff; }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.section-heading--inverse > p { max-width: 470px; color: #c0c3ca; font-size: 14px; line-height: 1.75; }
.slider-controls { display: flex; gap: 10px; }
.slider-controls button { width: 48px; height: 48px; border: 0; border-radius: 50%; background: #fff; cursor: pointer; }
.slider-controls button:last-child { color: #fff; background: var(--orange); }
.solution-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--space-3); margin-top: var(--space-5); }
.solution-card { overflow: hidden; border: 8px solid #fff; border-radius: 20px; background: #fff; color: var(--ink); }
.solution-card img { width: 100%; height: 360px; object-fit: cover; border-radius: 12px; }
.solution-card > div { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 15px; padding: 22px 18px 20px; }
.solution-card span { color: var(--orange); font-weight: 800; }
.solution-card h3 { margin: 0; font-size: 20px; line-height: 1.25; }
.solution-card a { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: var(--orange); color: #fff; }
.solution-card p { grid-column: 2 / 4; margin: 0; color: var(--muted); font-size: 13px; line-height: 1.65; }

.metrics-section { padding: 120px 0; }
.section-heading--center { display: block; text-align: center; }
.metrics-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 70px; }
.metrics-grid > div { padding: 15px 30px; border-right: 1px solid var(--line); text-align: center; }
.metrics-grid > div:last-child { border-right: 0; }
.metrics-grid strong { display: block; color: #c6ccce; font-size: clamp(38px, 3.4vw, 60px); line-height: 1; }
.metrics-grid span { display: block; margin-top: 12px; color: var(--muted); font-size: 13px; }
.experts-section { padding: clamp(72px, 7vw, 112px) 0; }
.applications-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 38px; }
.applications-heading h2 { max-width: 850px; margin: 0; font-size: clamp(42px, 4.4vw, 70px); line-height: 1.02; letter-spacing: -.055em; }
.applications-controls { display: flex; gap: 9px; }
.carousel-arrow { width: 50px; height: 50px; display: grid; place-items: center; flex: 0 0 auto; border: 1px solid #adb8bb; border-radius: 50%; background: transparent; color: var(--ink); cursor: pointer; transition: transform .2s ease, border-color .2s ease, background .2s ease, color .2s ease; }
.carousel-arrow:hover { transform: translateY(-2px); border-color: var(--ink); }
.carousel-arrow:disabled { opacity: .35; cursor: not-allowed; transform: none; }
.carousel-arrow--accent { border-color: var(--orange); background: var(--orange); color: #fff; }
.applications-viewport { overflow: hidden; cursor: grab; touch-action: pan-y; user-select: none; }
.applications-viewport.is-dragging { cursor: grabbing; }
.applications-track { display: flex; gap: 20px; transition: transform .45s cubic-bezier(.2,.75,.25,1); }
.applications-track.is-dragging { transition: none; }
.applications-track img { -webkit-user-drag: none; user-select: none; }
.application-card { min-width: calc((100% - 40px) / 3); height: 410px; position: relative; overflow: hidden; border: 1px solid #dfe6e7; border-radius: 18px; background: #fff; box-shadow: 0 18px 45px rgba(18,19,27,.08); }
.application-card > img { width: 100%; height: 62%; object-fit: cover; transition: height .38s ease, transform .55s ease; }
.application-card-content { height: 38%; position: absolute; right: 0; bottom: 0; left: 0; display: flex; align-items: flex-start; flex-direction: column; padding: 24px 25px; background: #fff; color: var(--ink); transition: height .38s ease, background .38s ease, color .38s ease; }
.application-card-content small { color: var(--orange); font-size: 10px; font-style: normal; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.application-card-content strong { max-width: 95%; margin-top: 10px; font-size: 23px; line-height: 1.12; letter-spacing: -.035em; }
.application-card-content em { margin-top: 8px; color: var(--muted); font-size: 12px; font-style: normal; line-height: 1.5; }
.application-card-link { margin-top: auto; color: var(--ink); font-size: 10px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; opacity: 0; transform: translateY(8px); transition: opacity .25s ease, transform .25s ease; }
.application-card-link i { margin-left: 7px; color: var(--orange); }
.application-card:hover > img, .application-card:focus-visible > img { height: 100%; transform: scale(1.035); }
.application-card:hover .application-card-content, .application-card:focus-visible .application-card-content { height: 54%; justify-content: flex-end; background: rgba(8,10,14,.94); color: #fff; }
.application-card:hover .application-card-content em, .application-card:focus-visible .application-card-content em { color: #d5d8de; }
.application-card:hover .application-card-link, .application-card:focus-visible .application-card-link { color: #fff; opacity: 1; transform: translateY(0); }
.applications-progress { height: 3px; margin-top: 26px; overflow: hidden; background: #dbe2e3; }
.applications-progress span { width: 33.333%; height: 100%; display: block; background: var(--orange); transform-origin: left center; transition: transform .4s ease; }
.testimonial-section { min-height: 430px; display: grid; grid-template-columns: minmax(0, .72fr) minmax(0, 1fr); overflow: hidden; border-radius: var(--radius-lg); background: var(--navy); color: #fff; }
.ai-demo { min-height: 430px; position: relative; display: flex; flex-direction: column; overflow: hidden; padding: 28px; background: #080c12; color: #fff; isolation: isolate; }
.ai-demo > .ai-demo-header, .ai-demo > .ai-demo-conversation, .ai-demo > .ai-demo-input { transition: filter .55s cubic-bezier(.22,1,.36,1), opacity .45s ease, transform .55s cubic-bezier(.22,1,.36,1); }
.ai-demo.is-inviting > .ai-demo-header, .ai-demo.is-inviting > .ai-demo-conversation, .ai-demo.is-inviting > .ai-demo-input { filter: blur(8px); opacity: .16; transform: scale(.975); pointer-events: none; }
.ai-demo-header { display: flex; align-items: center; gap: 12px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.1); }
.ai-demo-mark { width: 42px; height: 42px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 12px; background: var(--orange); font-size: 18px; }
.ai-demo-header > span:nth-child(2) { display: flex; flex-direction: column; }
.ai-demo-header strong { font-size: 14px; }
.ai-demo-header small { display: flex; align-items: center; gap: 6px; margin-top: 3px; color: #8d9bac; font-size: 9px; }
.ai-demo-header small i { width: 6px; height: 6px; border-radius: 50%; background: #51d68b; box-shadow: 0 0 0 4px rgba(81,214,139,.1); }
.ai-demo-status { margin-left: auto; padding: 6px 9px; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; color: #8ca2b8; font-size: 8px; font-weight: 800; letter-spacing: .15em; }
.ai-demo-conversation { display: flex; flex: 1; flex-direction: column; justify-content: center; gap: 14px; padding: 24px 0; }
.ai-message { width: min(88%, 430px); min-height: 76px; position: relative; padding: 16px 18px; border: 1px solid rgba(255,255,255,.1); border-radius: 16px; }
.ai-message small { display: block; margin-bottom: 8px; color: #7890a8; font-size: 8px; font-weight: 800; letter-spacing: .12em; }
.ai-message p { display: inline; margin: 0; font-size: clamp(12px, .9vw, 15px); line-height: 1.55; }
.ai-message--user { align-self: flex-end; background: #121a25; }
.ai-message--assistant { align-self: flex-start; background: var(--navy); opacity: 0; transform: translateY(8px); transition: opacity .3s ease, transform .3s ease; }
.ai-message--assistant.is-visible { opacity: 1; transform: none; }
.ai-message--assistant small { color: #8fc8ff; }
.ai-caret { width: 2px; height: 1.15em; display: inline-block; margin-left: 3px; background: #fff; vertical-align: text-bottom; animation: ai-caret .7s steps(1) infinite; }
.ai-message:not(.is-typing) .ai-caret { display: none; }
.ai-thinking { display: none; align-items: center; gap: 5px; color: #738397; font-size: 9px; }
.ai-thinking.is-visible { display: flex; }
.ai-thinking span { width: 5px; height: 5px; border-radius: 50%; background: var(--orange); animation: ai-dot 1s ease-in-out infinite; }
.ai-thinking span:nth-child(2) { animation-delay: .14s; }
.ai-thinking span:nth-child(3) { animation-delay: .28s; }
.ai-thinking em { margin-left: 5px; font-style: normal; }
.ai-demo-input { min-height: 44px; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 0 9px 0 15px; border: 1px solid rgba(255,255,255,.12); border-radius: 13px; color: #66778a; font-size: 10px; cursor: pointer; }
.ai-demo-input i { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 9px; background: #fff; color: #080c12; }
.ai-turn-overlay { position: absolute; inset: 0; z-index: 3; display: grid; place-items: center; padding: 24px; background: rgba(4,9,16,.38); opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity .4s ease, visibility .4s ease, transform .5s cubic-bezier(.22,1,.36,1); }
.ai-demo.is-inviting .ai-turn-overlay { opacity: 1; visibility: visible; transform: none; }
.ai-turn-card { width: min(100%, 470px); position: relative; padding: 28px; border: 1px solid rgba(157,208,244,.42); border-radius: 22px; background: linear-gradient(145deg, rgba(255,255,255,.99), rgba(234,245,255,.97)); color: var(--navy); box-shadow: 0 24px 70px rgba(0,0,0,.35); transform: scale(.92) translateY(18px); transition: transform .55s cubic-bezier(.22,1,.36,1), opacity .3s ease; }
.ai-demo.is-inviting .ai-turn-card { transform: none; }
.ai-turn-card.is-leaving { opacity: 0; transform: scale(.96) translateX(24px); }
.ai-turn-close { width: 34px; height: 34px; position: absolute; top: 16px; right: 16px; display: grid; place-items: center; border: 0; border-radius: 50%; background: rgba(6,59,107,.08); color: var(--navy); cursor: pointer; }
.ai-turn-icon { width: 42px; height: 42px; display: grid; place-items: center; margin-bottom: 16px; border-radius: 13px; background: var(--orange); color: #fff; box-shadow: 0 8px 22px rgba(11,103,183,.26); }
.ai-turn-card > small { display: block; margin-bottom: 7px; color: var(--orange); font-size: 9px; font-weight: 800; letter-spacing: .18em; }
.ai-turn-card h3 { margin: 0; font-size: clamp(22px, 2vw, 29px); letter-spacing: -.035em; }
.ai-turn-card > p { margin: 9px 0 18px; color: #5c7186; font-size: 11px; line-height: 1.55; }
.ai-turn-card label { display: block; }
.ai-turn-card textarea { width: 100%; min-height: 92px; resize: none; padding: 15px 16px; border: 1px solid #cbd9e6; border-radius: 14px; outline: 0; background: #fff; color: var(--navy); font: 600 12px/1.55 var(--font-sans); transition: border-color .2s ease, box-shadow .2s ease; }
.ai-turn-card textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(11,103,183,.11); }
.ai-turn-card textarea::placeholder { color: #8798a9; font-weight: 500; }
.ai-turn-submit { min-height: 44px; width: 100%; display: flex; align-items: center; justify-content: space-between; margin-top: 12px; padding: 0 8px 0 17px; border: 0; border-radius: 13px; background: var(--navy); color: #fff; font: 800 10px/1 var(--font-sans); letter-spacing: .08em; cursor: pointer; }
.ai-turn-submit i { width: 30px; height: 30px; display: grid; place-items: center; border-radius: 9px; background: var(--orange); }
.ai-turn-submit:disabled { opacity: .65; cursor: wait; }
@keyframes ai-caret { 50% { opacity: 0; } }
@keyframes ai-dot { 0%, 100% { opacity: .25; transform: translateY(0); } 50% { opacity: 1; transform: translateY(-3px); } }
.ai-teaser-content { display: flex; align-items: flex-start; flex-direction: column; justify-content: center; padding: clamp(55px, 5vw, 96px); }
.ai-teaser-content > i { color: var(--orange); font-size: 34px; }
.ai-teaser-content h2 { margin: 26px 0 12px; font-size: clamp(40px, 3.2vw, 60px); line-height: 1; letter-spacing: -.05em; }
.ai-teaser-content p { max-width: 650px; margin: 0 0 28px; color: #c1c4cc; font-size: clamp(18px, 1.5vw, 25px); line-height: 1.45; }

.gallery-section, .articles-section { padding: 120px 0 40px; }
.gallery-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: var(--space-3); margin-top: var(--space-5); }
.gallery-grid figure { height: 480px; position: relative; margin: 0; overflow: hidden; border-radius: var(--radius-md); }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; }
.gallery-grid figcaption { position: absolute; right: 14px; bottom: 14px; left: 14px; display: flex; justify-content: space-between; padding: 18px 20px; border-radius: 10px; background: #fff; font-size: 13px; font-weight: 800; }
.gallery-grid figcaption span { color: var(--orange); }
.articles-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--space-3); margin-top: var(--space-5); }
.articles-grid article { display: grid; grid-template-rows: 240px 1fr; overflow: hidden; border-radius: var(--radius-md); background: #fff; }
.articles-grid img { width: 100%; height: 240px; object-fit: cover; }
.articles-grid article > div { padding: 35px; }
.articles-grid small { color: var(--orange); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.articles-grid h3 { margin: 18px 0 15px; font-size: 22px; line-height: 1.3; }
.articles-grid p { margin: 0 0 28px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.articles-grid a { font-size: 12px; font-weight: 800; text-transform: uppercase; }
.articles-grid a i { margin-left: 8px; color: var(--orange); }

.site-footer { margin-top: 72px; padding: 40px max(var(--gutter), calc((100% - var(--content)) / 2)) 18px; background: var(--navy); color: #fff; }
.footer-top { display: grid; grid-template-columns: .32fr 1.2fr auto; align-items: center; gap: clamp(24px, 3vw, 52px); padding-bottom: 28px; }
.footer-top h2 { max-width: 820px; font-size: clamp(38px, 3.1vw, 58px); }
.site-footer h2 em { color: #9dd0f4; }
.brand--footer { grid-area: auto; width: fit-content; padding: 10px 12px; border-radius: 10px; background: #fff; }
.brand-logo--footer { width: 148px; }
.footer-cta-actions { display: flex; align-items: center; gap: 10px; }
.button--footer-outline { border: 1px solid #4b4d57; color: #fff; background: transparent; }
.button--footer-outline span { background: #fff; color: var(--orange); }
.footer-links { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: clamp(28px, 4vw, 70px); padding: 26px 0 28px; border-top: 1px solid rgba(255,255,255,.2); }
.footer-links h3 { margin: 0 0 12px; font-size: 14px; text-transform: uppercase; }
.footer-links p { max-width: 420px; margin: 0; color: #b9c7d6; font-size: 13.5px; line-height: 1.65; }
.footer-links a, .footer-links span { display: block; margin: 7px 0; color: #b9c7d6; font-size: 13.5px; line-height: 1.5; }
.footer-links a:hover { color: #fff; }
.footer-bottom { min-height: 66px; display: flex; align-items: center; flex-direction: column-reverse; justify-content: center; gap: 8px; padding-top: 13px; border-top: 1px solid rgba(255,255,255,.2); color: #c7d7e7; font-size: 11px; text-align: center; }
.footer-bottom div { display: flex; justify-content: center; flex-wrap: wrap; gap: 25px; }
.footer-credit { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 7px; margin: 0; color: #fff; }
.legal-links { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 6px 18px; color: #b9c7d6; font-size: 11px; line-height: 1.4; }
.legal-links a { display: inline-flex; padding: 2px 0; }
.legal-links a:hover { color: #fff; }
.medyahors-link { display: inline-flex; align-items: center; }
.medyahors-link img { width: 96px; height: 32px; object-fit: contain; }
.agency-hidden-link, .agency-hidden-link:visited { color: var(--navy); }
.toast { position: fixed; right: 24px; bottom: 24px; z-index: 50; padding: 14px 18px; border-radius: 10px; background: var(--navy); color: #fff; font-size: 12px; opacity: 0; transform: translateY(20px); pointer-events: none; transition: .25s ease; box-shadow: var(--shadow); }
.toast.is-visible { opacity: 1; transform: translateY(0); }

@media (min-width:1081px) and (max-width:1450px){.primary-nav{gap:10px}.primary-nav a,.nav-trigger{font-size:11px}.site-header{padding-right:24px;padding-left:24px}.brand-logo{width:112px}.header-actions{gap:8px}.header-actions .button{padding-right:12px;padding-left:12px}}
@media (max-width: 1080px) {
  .site-header { grid-template-areas: "menu brand actions"; grid-template-columns: auto 1fr auto; backdrop-filter: none; }
  .menu-toggle { grid-area: menu; }
  .menu-toggle { display: grid; place-items: center; }
  body::after { content: ""; position: fixed; inset: 0; z-index: 90; background: rgba(3,25,43,.62); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .28s ease, visibility .28s ease; }
  body.menu-open::after { opacity: 1; visibility: visible; pointer-events: auto; }
  body.menu-open .site-header { transform: none !important; }
  .primary-nav { position: fixed; inset: 0 0 0 auto; z-index: 120; width: min(88vw, 420px); height: 100dvh; display: flex; align-items: stretch; flex-direction: column; justify-content: flex-start; gap: 5px; overflow-x: hidden; overflow-y: auto; overscroll-behavior: contain; padding: 92px 24px 40px; background: #071421; color: #fff; box-shadow: -24px 0 60px rgba(0,25,50,.28); opacity: 1; visibility: hidden; transform: translate3d(105%,0,0); transition: transform .32s cubic-bezier(.22,.75,.22,1), visibility .32s ease; }
  .primary-nav.is-open { visibility: visible; transform: translate3d(0,0,0); }
  .primary-nav > a, .nav-trigger { width: 100%; justify-content: space-between; padding: 15px 4px; border-bottom: 1px solid rgba(255,255,255,.12); color: #fff; font-size: 18px; text-align: left; }
  .nav-item { width: 100%; }
  .nav-panel { width: 100%; min-width: 0; max-height: 0; position: static; display: block; overflow: hidden; padding: 0 10px; border: 0; border-radius: 0; background: transparent; color: #fff; box-shadow: none; opacity: 1; visibility: visible; transform: none; transition: max-height .35s ease, padding .35s ease; }
  .nav-item.is-open > .nav-panel { max-height: 900px; padding-top: 10px; padding-bottom: 14px; transform: none; }
  .nav-panel--compact > a, .nav-mega-links > a { color: #fff; }
  .nav-panel--compact > a:hover, .nav-mega-links > a:hover { background: rgba(255,255,255,.08); }
  .nav-panel small { color: #afb4bd; }
  .nav-mega { grid-template-columns: 1fr; }
  .nav-mega-intro { display: none; }
  .nav-mega-links, .nav-mega-links--three { grid-template-columns: 1fr 1fr; }
  .nav-mega-links--three > a { border-color: rgba(255,255,255,.14); }
  .menu-toggle { position: relative; z-index: 130; }
  body.menu-open .menu-toggle { position: fixed; top: 18px; right: 18px; left: auto; background: #0b65ad; box-shadow: 0 10px 28px rgba(0,34,68,.26); }
  .brand { justify-self: center; }
  .hero { height: 720px; }
  .hero-links { width: min(90%, 920px); grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 88px; margin-top: -55px; }
  .hero-links--products { row-gap: 14px; }
  .hero-link-card { min-height: 280px; }
  .hero-link-copy { padding: 22px; }
  .hero-link-card > img { width: 78%; height: 68%; right: -7%; bottom: -13%; }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-section { grid-template-columns: 1fr; }
  .about-images { min-height: 610px; }
  .about-main-image { height: 610px; min-height: 0; }
  .about-copy { max-width: 780px; padding: 0; }
  .tab-panel { margin-left: 0; }
  .solution-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid figure:last-child { grid-column: 1 / -1; }
  .articles-grid { grid-template-columns: 1fr; }
  .application-card { min-width: calc((100% - 20px) / 2); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top h2 { grid-column: 1 / -1; grid-row: 1; }
  .footer-links { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1321px) and (max-width: 1500px) {
  .primary-nav { gap: 12px; }
  .primary-nav a, .nav-trigger { font-size: 13px; }
  .brand-logo { width: 122px; }
  .header-actions { gap: 9px; }
  .header-actions .button { padding-left: 16px; font-size: 12px; }
}

@media (max-width: 720px) {
  :root { --site-header-flow: 78px; }
  .site-header { height: 78px; }
  .header-actions .button { display: none; }
  .header-actions > .language-selector { display: none; }
  .language-menu > .language-selector { display: inline-flex; }
  .language-menu__panel { position: fixed; top: 70px; right: 14px; }
  .hero { height: 620px; border-radius: 14px; }
  .hero-slide { object-position: 68% center; }
  .hero-content { width: calc(100% - 34px); }
  .hero h1 { font-size: 40px; }
  .hero-summary { font-size: 12px; }
  .hero-actions { align-items: stretch; flex-direction: column; width: min(100%, 270px); margin: 0 auto; }
  .hero-links { width: calc(100% - (var(--gutter) * 2)); grid-template-columns: 1fr; row-gap: 76px; margin-top: -35px; }
  .hero-links--products { row-gap: 12px; }
  .nav-mega-links, .nav-mega-links--three { grid-template-columns: 1fr; }
  .hero-link-card { min-height: 300px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .hero-link-card:last-child { border-bottom: 0; }
  .hero-link-card > img { width: 74%; height: 66%; right: -7%; bottom: -11%; }
  .hero-links--products .hero-link-card > img { width: min(78%, 300px); height: 60%; right: 0; bottom: 0; }
  .hero-link-proof { max-width: 90%; flex-wrap: wrap; }
  .feature-grid { grid-template-columns: 1fr; gap: 12px; }
  .feature-card { min-height: 280px; padding: 24px; }
  .feature-card__copy { padding-top: 34px; }
  .feature-card:hover { transform: translateY(-3px); }
  .hero-link-copy { padding: 24px; }
  .hero-link-copy strong { font-size: 30px; }
  .applications-heading { align-items: flex-start; flex-direction: column; margin-bottom: 26px; }
  .applications-heading h2 { font-size: 38px; }
  .applications-controls { align-self: flex-end; }
  .application-card { min-width: 100%; height: 390px; }
  .about-section { padding: 0 0 65px; }
  .about-images, .about-main-image { min-height: 500px; }
  .about-main-image { width: 82%; height: 500px; }
  .about-detail-image { width: 54%; height: 245px; }
  .about-copy h2, .section-heading h2, .site-footer h2 { font-size: 36px; }
  .tab-list { width: 100%; gap: 8px; overflow: visible; margin: 35px 0 25px; }
  .tab { min-width: 0; flex: 1 1 0; padding: 13px 8px; white-space: nowrap; font-size: 10.5px; }
  .about-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .marquee { height: 68px; }
  .marquee-track span { padding-right: 34px; font-size: 38px; }
  .marquee i { margin: 0 24px; }
  .solutions { padding: 55px 16px 24px; border-radius: 16px; }
  .section-heading { align-items: flex-start; flex-direction: column; }
  .section-heading--inverse > p { margin: 0; }
  .solution-grid { grid-template-columns: 1fr; }
  .solution-card img { height: 290px; }
  .metrics-section { padding: 80px 0; }
  .metrics-grid { grid-template-columns: 1fr 1fr; gap: 30px 0; }
  .metrics-grid > div:nth-child(2) { border-right: 0; }
  .experts-list { width: 100%; }
  .experts-list > a { grid-template-columns: 38px 1fr; }
  .experts-list small { grid-column: 2; margin-top: 4px; }
  .testimonial-section { grid-template-columns: 1fr; }
  .ai-demo { min-height: 390px; padding: 22px; }
  .ai-turn-overlay { padding: 16px; }
  .ai-turn-card { padding: 24px 20px 20px; }
  .ai-teaser-content { padding: 45px 30px; }
  .ai-teaser-content h2 { font-size: 40px; }
  .gallery-section, .articles-section { padding-top: 80px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid figure { height: 390px; }
  .gallery-grid figure:last-child { grid-column: auto; }
  .articles-grid { grid-template-columns: 1fr; }
  .articles-grid img { height: 230px; }
  .site-footer { margin-top: 54px; padding-top: 38px; padding-bottom: 20px; }
  .footer-top { display: flex; align-items: flex-start; flex-direction: column; }
  .footer-cta-actions { align-items: stretch; flex-direction: column; width: 100%; }
  .footer-cta-actions .button { width: 100%; }
  .footer-links { grid-template-columns: 1fr; gap: 22px; padding: 24px 0; }
  .footer-bottom { flex-direction: column-reverse; gap: 10px; }
  .footer-credit { justify-content: center; }
}

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

/* Global presence — regional coverage without unverified country claims */
.global-presence {
  display: grid;
  grid-template-columns: minmax(320px, .68fr) minmax(540px, 1.32fr);
  gap: clamp(1.5rem, 3vw, 3.25rem);
  align-items: stretch;
  width: min(calc(100% - var(--page-gutter) - var(--page-gutter)), var(--content));
  margin: clamp(3rem, 6vw, 6.5rem) auto;
  padding: clamp(2rem, 4vw, 4.25rem);
  border-radius: 28px;
  color: #fff;
  background: linear-gradient(135deg, #061b32 0%, #073c72 58%, #0865ad 100%);
  overflow: hidden;
  scroll-margin-top: 86px;
}

.global-presence-copy { width: min(100%, 680px); align-self: center; justify-self: center; display: flex; flex-direction: column; justify-content: center; }

.global-presence-copy h2 {
  max-width: 720px;
  margin: .55rem 0 1.15rem;
  color: #fff;
  font-size: clamp(2.25rem, 4.25vw, 4.8rem);
  line-height: .98;
  letter-spacing: -.055em;
  word-spacing: .06em;
  text-wrap: balance;
}

.global-presence-copy h2 em { display: inline-block; margin-inline-start: .08em; color: #8ecbff; font-style: normal; white-space: nowrap; }
.global-presence-copy > p:not(.eyebrow) { max-width: 640px; color: rgba(255,255,255,.74); line-height: 1.75; }
.global-presence-copy .eyebrow { color: #8ecbff; }
.global-presence-copy .button { margin-top: 1.5rem; }
.global-region-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .65rem 1.1rem; margin-top: 1.4rem; }
.global-region-links a { display: flex; justify-content: space-between; align-items: center; padding: .85rem 0; border-bottom: 1px solid rgba(255,255,255,.2); color: #fff; font-weight: 700; }
.global-region-links a i { color: #8ecbff; transition: transform .25s ease; }
.global-region-links a:hover i { transform: translateX(5px); }
.global-presence-map { position: relative; width: 100%; min-height: 500px; display: grid; place-items: center; }
.global-map-stage { position: relative; width: min(116%, 1050px); aspect-ratio: 960 / 487; margin-inline: auto; isolation: isolate; }
.global-map-stage > img { position: absolute; z-index: 0; inset: 0; width: 100%; height: 100%; object-fit: contain; opacity: .9; filter: brightness(0) invert(1) drop-shadow(0 18px 35px rgba(0,0,0,.14)); }
.global-map-stage > canvas { position: absolute; z-index: 2; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.map-point { position: absolute; z-index: 4; left: calc(var(--map-x, .5) * 100%); top: calc(var(--map-y, .5) * 100%); width: 10px; height: 10px; color: #fff; transform: translate(-50%, -50%); }
.map-point i { position: absolute; inset: 0; display: block; width: 10px; height: 10px; border-radius: 50%; background: #8ecbff; box-shadow: 0 0 0 7px rgba(142,203,255,.14), 0 0 22px #8ecbff; animation: mapPulse 2.2s ease-in-out infinite; }
.map-point b { position: absolute; z-index: 1; display: block; min-height: 36px; padding: .64rem .78rem; border: 1px solid rgba(255,255,255,.24); border-radius: 11px; color: #fff; background: rgba(2,18,34,.92); box-shadow: 0 12px 28px rgba(0,0,0,.27); backdrop-filter: blur(10px); font-size: .66rem; line-height: 1; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; white-space: nowrap; }
.map-point b::before { content: ''; position: absolute; width: 14px; height: 1px; background: rgba(142,203,255,.78); transform-origin: right center; }
.map-point--americas { --map-x: .247; --map-y: .405; }
.map-point--americas b { right: 17px; top: 50%; transform: translateY(-50%); }
.map-point--americas b::before { right: -14px; top: 50%; }
.map-point--europe { --map-x: .512; --map-y: .205; }
.map-point--europe b { right: 15px; bottom: 14px; }
.map-point--europe b::before { right: -13px; bottom: -6px; transform: rotate(30deg); }
.map-point--africa { --map-x: .526; --map-y: .485; }
.map-point--africa b { left: 50%; top: 18px; transform: translateX(-50%); }
.map-point--africa b::before { left: 50%; top: -8px; transform: translateX(-50%) rotate(90deg); }
.map-point--middle-east { --map-x: .602; --map-y: .325; }
.map-point--middle-east b { left: 17px; top: 50%; transform: translateY(-50%); }
.map-point--middle-east b::before { left: -14px; top: 50%; }
.map-point:nth-of-type(2) i { animation-delay: -.5s; }
.map-point:nth-of-type(3) i { animation-delay: -1s; }
.map-point:nth-of-type(4) i { animation-delay: -1.5s; }
.map-origin { position: absolute; z-index: 6; left: 56.4%; top: 25.5%; width: 12px; height: 12px; transform: translate(-50%, -50%); }
.map-origin-pin { position: absolute; inset: 0; border: 2px solid #fff; border-radius: 50%; background: #168bd4; box-shadow: 0 0 0 7px rgba(142,203,255,.18), 0 0 24px #8ecbff; }
.map-origin-card { position: absolute; left: 19px; bottom: 17px; display: flex; gap: .7rem; align-items: center; min-width: 180px; padding: .72rem .85rem; border: 1px solid rgba(255,255,255,.28); border-radius: 13px; background: rgba(2,18,34,.94); box-shadow: 0 14px 32px rgba(0,0,0,.3); backdrop-filter: blur(10px); }
.map-origin-card::after { content: ''; position: absolute; left: -13px; bottom: -7px; width: 17px; height: 1px; background: rgba(142,203,255,.78); transform: rotate(-34deg); }
.map-origin-card > i { color: #8ecbff; font-size: 1rem; animation: originBolt 1.5s ease-in-out infinite; }
.map-origin-card > span { display: grid; }
.map-origin small { color: rgba(255,255,255,.6); font-size: .65rem; }
.map-origin strong { color: #fff; font-size: .8rem; }

@keyframes mapPulse { 50% { box-shadow: 0 0 0 12px rgba(142,203,255,0), 0 0 28px #8ecbff; } }
@keyframes originBolt { 50% { color: #fff; filter: drop-shadow(0 0 8px #8ecbff); transform: scale(1.12); } }

@media (max-width: 980px) {
  .global-presence { grid-template-columns: 1fr; }
  .global-presence-map { min-height: 330px; }
  .global-map-stage { width: min(100%, 900px); }
}

@media (max-width: 620px) {
  .global-presence { width: 100%; margin-inline: 0; border-radius: 0; padding: 2rem var(--page-gutter); }
  .global-region-links { grid-template-columns: 1fr; }
  .global-presence-map { min-height: 270px; margin-inline: -1rem; }
  .map-point { transform: translate(-50%, -50%); }
  .map-point b { display: none; }
  .map-origin { transform: translate(-50%, -50%); }
  .map-origin-card { left: 14px; bottom: 14px; min-width: 0; padding: .55rem .65rem; }
  .map-origin small { display: none; }
  .map-origin strong { font-size: .66rem; }
}

/* International project index */
.home-projects {
  width: min(calc(100% - var(--page-gutter) - var(--page-gutter)), var(--content));
  margin: clamp(3rem, 6vw, 6.5rem) auto;
  padding: clamp(1.5rem, 3vw, 3.2rem) 0 0;
  border-top: 1px solid rgba(6,61,113,.18);
  scroll-margin-top: 86px;
}

.home-projects-heading { display: grid; grid-template-columns: minmax(0,1fr) minmax(300px,.7fr); gap: 2rem; align-items: end; margin-bottom: clamp(1.5rem,3vw,2.5rem); }
.home-projects-heading h2 { margin: .35rem 0 0; color: var(--ink); font-size: clamp(2.2rem,4.4vw,4.6rem); line-height: .98; letter-spacing: -.055em; }
.home-projects-heading h2 em { color: var(--orange); font-style: normal; }
.home-projects-heading > p { max-width: 650px; justify-self: end; margin: 0; color: var(--muted); line-height: 1.75; }
.project-country-list { display: grid; grid-template-columns: repeat(var(--project-columns,5),minmax(0,1fr)); border-block: 1px solid rgba(6,61,113,.16); margin-bottom: 1.1rem; }
.project-country { position: relative; display: grid; grid-template-columns: 32px 38px minmax(0,1fr); grid-template-rows: auto auto; column-gap: .7rem; align-items: center; min-width: 0; padding: 1rem .85rem; border: 0; border-right: 1px solid rgba(6,61,113,.12); color: var(--ink); background: transparent; text-align: left; cursor: pointer; transition: color .25s ease, background .25s ease; }
.project-country:last-child { border-right: 0; }
.project-country::after { content: ''; position: absolute; left: 0; right: 100%; bottom: -1px; height: 3px; background: var(--orange); transition: right .3s ease; }
.project-country-index { grid-row: 1 / 3; color: #8ca0b1; font-size: .66rem; font-weight: 800; letter-spacing: .1em; }
.project-country img { grid-row: 1 / 3; width: 38px; height: 26px; aspect-ratio: 3/2; border-radius: 3px; object-fit: cover; box-shadow: 0 3px 10px rgba(4,35,66,.12); }
.project-country strong { overflow: hidden; font-size: .91rem; line-height: 1.15; text-overflow: ellipsis; white-space: nowrap; }
.project-country small { overflow: hidden; color: #72889a; font-size: .59rem; font-weight: 700; letter-spacing: .06em; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.project-country:hover { color: var(--orange); background: #f5f9fc; }
.project-country.is-active { color: var(--orange); background: #eef6fc; }
.project-country.is-active::after { right: 0; }
.project-country.is-active .project-country-index { color: var(--orange); }
.project-country-panels { min-width: 0; }
.country-project-panel { display: none; min-height: 520px; grid-template-columns: minmax(0,1.25fr) minmax(360px,.75fr); overflow: hidden; background: var(--navy); color: #fff; }
.country-project-panel.is-active { display: grid; }
.country-project-media { position: relative; min-height: 520px; overflow: hidden; }
.country-project-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg,rgba(3,17,31,.08),rgba(3,17,31,.38)); pointer-events: none; }
.country-project-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.country-project-panel:hover .country-project-media img { transform: scale(1.035); }
.country-project-media > span { position: absolute; z-index: 2; left: 1.5rem; top: 1.5rem; padding: .55rem .75rem; border: 1px solid rgba(255,255,255,.34); color: #fff; background: rgba(3,17,31,.56); font-size: .66rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; backdrop-filter: blur(9px); }
.country-project-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(1.7rem,3.2vw,3.4rem); }
.country-project-copy .page-kicker { color: #8ecbff; }
.country-project-copy h3 { margin: .55rem 0 1.4rem; color: #fff; font-size: clamp(2rem,3.1vw,3.6rem); line-height: 1; letter-spacing: -.045em; }
.country-project-copy dl { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); margin: 0 0 1.25rem; padding-block: 1rem; border-block: 1px solid rgba(255,255,255,.16); }
.country-project-copy dl div { min-width: 0; padding-right: .65rem; }
.country-project-copy dt { margin-bottom: .35rem; color: #8ecbff; font-size: .61rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.country-project-copy dd { margin: 0; color: #fff; font-size: .91rem; font-weight: 700; }
.country-project-copy > p { margin: 0 0 1.4rem; color: rgba(255,255,255,.7); line-height: 1.7; }
.project-text-link { align-self: flex-start; display: inline-flex; align-items: center; gap: .7rem; padding-bottom: .35rem; border-bottom: 1px solid rgba(255,255,255,.5); color: #fff; font-size: .72rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.project-text-link i { color: #8ecbff; transition: transform .25s ease; }
.project-text-link:hover i { transform: translateX(5px); }

@media (max-width: 980px) {
  .home-projects-heading { grid-template-columns: 1fr; }
  .home-projects-heading > p { justify-self: start; }
  .project-country-list { display: flex; overflow-x: auto; scrollbar-width: none; scroll-snap-type: x proximity; }
  .project-country-list::-webkit-scrollbar { display: none; }
  .project-country { min-width: 210px; border-right: 1px solid rgba(6,61,113,.12); }
  .project-country { scroll-snap-align: start; }
}

@media (max-width: 720px) {
  .home-projects { width: 100%; margin-inline: 0; padding: 1.25rem var(--page-gutter) 0; }
  .country-project-panel.is-active { grid-template-columns: 1fr; }
  .country-project-panel { min-height: 0; }
  .country-project-media { min-height: 280px; }
  .country-project-copy { padding: 1.35rem; }
  .country-project-copy dl { gap: .65rem; }
}

/* Compact site-wide vertical rhythm: prevents empty bands between consecutive sections. */
.hero-links { margin-bottom: clamp(54px, 5vw, 76px); }
.feature-grid { margin-bottom: clamp(42px, 4vw, 64px); }
.about-section { min-height: 0; padding-top: clamp(38px, 4vw, 58px); padding-bottom: clamp(46px, 4.5vw, 68px); }
.metrics-section { padding: clamp(50px, 5vw, 74px) 0; }
.experts-section { padding: clamp(48px, 5vw, 72px) 0; }
.gallery-section, .articles-section { padding: clamp(46px, 4.5vw, 66px) 0 30px; }
.global-presence { margin-top: clamp(34px, 4vw, 60px); margin-bottom: clamp(34px, 4vw, 60px); }
.home-projects { margin-top: clamp(34px, 4vw, 58px); margin-bottom: clamp(16px, 1.7vw, 26px); padding-top: clamp(24px, 2.5vw, 38px); }

@media (max-width: 720px) {
  .hero-links { margin-bottom: 48px; }
  .about-section, .metrics-section, .experts-section, .gallery-section, .articles-section { padding-top: 38px; padding-bottom: 38px; }
  .global-presence { margin-top: 28px; margin-bottom: 28px; }
  .home-projects { margin: 30px 0 10px; padding: 24px var(--page-gutter) 0; }
}

/* tzn-safari-image-compatibility-20260818:start */
@supports (-webkit-touch-callout: none) {
  .hero-slide,
  .hero-slide img,
  .country-project-media,
  .country-project-media img,
  .project-catalog-media,
  .project-catalog-media img {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  .hero-slide.is-active img,
  .country-project-panel.is-active .country-project-media img {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
/* tzn-safari-image-compatibility-20260818:end */

/* tzn-mobile-about-title-spacing-20260818:start */
@media (max-width: 720px) {
  .about-copy h2 em {
    margin: 0 .2em !important;
    margin-inline: .2em !important;
  }
}
/* tzn-mobile-about-title-spacing-20260818:end */

/* tzn-mobile-products-menu-link-20260818:start */
@media (max-width: 1080px) {
  .primary-nav .nav-item--mega .nav-mega-intro {
    display: block;
    padding: 0;
    border-radius: 0;
    background: transparent;
  }

  .primary-nav .nav-item--mega .nav-mega-intro > :not(a) {
    display: none;
  }

  .primary-nav .nav-item--mega .nav-mega-intro > a {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
    padding: 12px 14px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 10px;
    background: rgba(255,255,255,.08);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.35;
    text-transform: none;
  }

  .primary-nav .nav-item--mega .nav-mega-intro > a:hover,
  .primary-nav .nav-item--mega .nav-mega-intro > a:focus-visible {
    background: rgba(255,255,255,.14);
  }
}
/* tzn-mobile-products-menu-link-20260818:end */
