:root {
  --navy: #06162b;
  --navy-2: #0a213e;
  --blue: #0d82ff;
  --cyan: #67c3ff;
  --ice: #eef5fb;
  --paper: #f8fafc;
  --white: #fff;
  --ink: #0a1b31;
  --muted: #596b7f;
  --line: #d4dfe9;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; color: var(--ink); background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased;
}
body.hy { font-family: "Segoe UI", Arial, sans-serif; }
a { color: inherit; }
.site-header {
  position: fixed; z-index: 40; inset: 0 0 auto; height: 82px;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: 0 4vw; color: white; border-bottom: 1px solid rgba(255,255,255,.13);
  background: rgba(5,19,38,.72); backdrop-filter: blur(18px);
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; width: max-content; }
.brand-mark { display: grid; place-items: center; width: 34px; height: 34px; color: white; font-weight: 700; background: linear-gradient(140deg,#1799ff,#074b9e); border-radius: 9px 3px 9px 3px; box-shadow: 0 8px 24px rgba(11,118,238,.28); }
.brand-name { font-size: .85rem; font-weight: 700; letter-spacing: .2em; }
.desktop-nav { display: flex; gap: 2.3rem; }
.desktop-nav a { text-decoration: none; color: #c3d1df; font-size: .82rem; font-weight: 600; transition: color .2s; }
.desktop-nav a:hover { color: white; }
.header-actions { justify-self: end; display: flex; align-items: center; }
.language-switch { display: flex; align-items: center; gap: .55rem; }
.language-switch span { width: 1px; height: 15px; background: rgba(255,255,255,.25); }
.lang { padding: 8px 3px; border: 0; color: #8092a8; background: transparent; text-decoration: none; font: inherit; font-size: .76rem; font-weight: 700; cursor: pointer; }
.lang.active { color: var(--cyan); }
.menu-button { display: none; width: 42px; height: 42px; margin-left: 18px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; background: transparent; cursor: pointer; }
.menu-button i { display: block; width: 16px; height: 1px; margin: 5px auto; background: white; transition: transform .25s; }
.mobile-menu { display: none; }

.hero {
  position: relative; min-height: 760px; height: 100svh; color: white;
  display: flex; align-items: center; padding: 130px 6vw 105px; overflow: hidden; background: var(--navy);
}
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,16,33,.98) 0%, rgba(4,16,33,.85) 38%, rgba(4,16,33,.22) 72%, rgba(4,16,33,.08) 100%); }
.hero-grid { position: absolute; inset: 0; opacity: .19; background-image: linear-gradient(rgba(122,190,255,.16) 1px, transparent 1px),linear-gradient(90deg,rgba(122,190,255,.16) 1px,transparent 1px); background-size: 74px 74px; mask-image: linear-gradient(to right,black,transparent 62%); }
.hero-copy { position: relative; z-index: 2; width: min(830px,60%); }
.eyebrow, .section-kicker p { margin: 0; color: var(--cyan); font-size: .72rem; font-weight: 700; letter-spacing: .19em; }
.hero h1 { max-width: 780px; margin: 1.5rem 0 1.8rem; font-size: clamp(4rem,7.6vw,8.2rem); font-weight: 500; line-height: .9; letter-spacing: -.07em; text-wrap: balance; }
.hero-lead { max-width: 650px; margin: 0; color: #b8c9d9; font-size: clamp(1rem,1.25vw,1.18rem); line-height: 1.8; }
.hero-links { display: flex; align-items: center; gap: 2rem; margin-top: 2.5rem; }
.primary-link { display: inline-flex; align-items: center; gap: 2.2rem; padding: 1rem 1.1rem 1rem 1.25rem; color: var(--navy); background: white; text-decoration: none; font-size: .86rem; font-weight: 700; border-radius: 3px; transition: transform .2s,box-shadow .2s; }
.primary-link b { color: var(--blue); font-size: 1rem; }
.primary-link:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(0,0,0,.2); }
.secondary-link { color: #d5e0ea; text-decoration-color: rgba(255,255,255,.35); text-underline-offset: 7px; font-size: .86rem; font-weight: 600; }
.hero-foot { position: absolute; z-index: 2; left: 6vw; right: 6vw; bottom: 2rem; display: flex; gap: 3.5rem; color: #6f8aa4; font-size: .66rem; font-weight: 700; letter-spacing: .14em; }

.intro,.sectors,.brands,.faq { padding: 9rem 8vw; }
.section-kicker { display: flex; align-items: baseline; gap: 1.5rem; }
.section-kicker span { color: #8a99a9; font-size: .68rem; letter-spacing: .12em; }
.section-kicker p { color: var(--blue); }
.intro { display: grid; grid-template-columns: .42fr 1.58fr; gap: 7vw; background: white; }
.intro-content h2,.section-top h2,.sectors h2,.approach h2,.brands h2,.closing h2,.signature h2 {
  margin: 0; font-size: clamp(2.8rem,5vw,5.8rem); font-weight: 500; line-height: 1.04; letter-spacing: -.055em;
}
.intro-content h2 { max-width: 1100px; }
.intro-columns { display: grid; grid-template-columns: repeat(2,1fr); gap: 4vw; margin-top: 4.5rem; }
.intro-columns p { margin: 0; color: var(--muted); font-size: 1.03rem; line-height: 1.9; }

.signature { min-height: 680px; display: grid; grid-template-columns: 1fr 1fr; background: var(--ice); }
.signature-logo { position: relative; display: grid; place-items: center; padding: 5vw; overflow: hidden; background: linear-gradient(145deg,#dcecf9,#f4f9fd); }
.signature-logo::before { content:""; position:absolute; width: 520px; height:520px; border:1px solid rgba(13,130,255,.12); border-radius:50%; box-shadow: 0 0 0 70px rgba(13,130,255,.035),0 0 0 140px rgba(13,130,255,.025); }
.signature-logo img { position: relative; z-index: 1; width: min(90%,600px); filter: drop-shadow(0 25px 35px rgba(5,47,105,.12)); }
.signature-copy { padding: 9vw 8vw; color: white; background: linear-gradient(140deg,#073769,#06162b); }
.signature-copy h2 { margin-top: 2rem; }
.signature-copy > p:last-child { max-width: 650px; margin: 2.5rem 0 0; color: #aebed0; font-size: 1.02rem; line-height: 1.9; }

.solutions { padding: 9rem 8vw; color: white; background: #071a31; }
.section-top { display: grid; grid-template-columns: .42fr 1.58fr; gap: 7vw; margin-bottom: 5.5rem; }
.section-kicker.light p { color: var(--cyan); }
.section-top > div:last-child > p { max-width: 580px; margin: 2rem 0 0; color: #9fb2c5; }
.solution-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid rgba(255,255,255,.16); border-left: 1px solid rgba(255,255,255,.16); }
.solution-grid article { position: relative; min-height: 350px; padding: 2.2rem; border-right: 1px solid rgba(255,255,255,.16); border-bottom: 1px solid rgba(255,255,255,.16); overflow: hidden; transition: background .25s; }
.solution-grid article:hover { background: #0a2546; }
.solution-grid article > span { position: absolute; top: 2.3rem; right: 2.2rem; color: #5d7894; font-size: .68rem; letter-spacing: .15em; }
.solution-icon { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 5.5rem; color: var(--cyan); border: 1px solid rgba(103,195,255,.4); border-radius: 50%; font-size: .68rem; font-weight: 700; letter-spacing: .08em; }
.solution-grid h3 { max-width: 260px; margin: 0; font-size: 1.3rem; line-height: 1.35; font-weight: 600; }
.solution-grid p { max-width: 400px; margin: 1.1rem 0 0; color: #93a8bc; line-height: 1.75; }

.sectors { display: grid; grid-template-columns: .42fr 1.58fr; gap: 7vw; background: var(--paper); }
.sectors-main > h2 { max-width: 1050px; }
.sector-list { margin-top: 5rem; border-top: 1px solid var(--line); }
.sector-list div { display: grid; grid-template-columns: 80px 1fr; align-items: center; min-height: 105px; border-bottom: 1px solid var(--line); }
.sector-list span { color: var(--blue); font-size: .68rem; letter-spacing: .15em; }
.sector-list h3 { margin: 0; font-size: clamp(1.3rem,2.2vw,2rem); font-weight: 500; letter-spacing: -.025em; }

.approach { padding: 9rem 8vw; color: white; background: linear-gradient(115deg,#0a4080,#071a31 72%); }
.approach-heading { display: grid; grid-template-columns: .42fr 1.58fr; gap: 7vw; }
.approach-heading h2 { max-width: 950px; }
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; margin-top: 6rem; background: rgba(255,255,255,.17); }
.steps article { min-height: 300px; padding: 2rem; background: #092542; }
.steps span { color: var(--cyan); font-size: .7rem; letter-spacing: .15em; }
.steps h3 { margin: 5rem 0 1rem; font-size: 1.3rem; font-weight: 600; }
.steps p { margin: 0; color: #9fb2c5; line-height: 1.75; }

.brands { display: grid; grid-template-columns: .8fr 1.2fr; gap: 8vw; background: #eaf2f8; }
.brands-heading { align-self: start; position: sticky; top: 125px; }
.brands-heading h2 { margin-top: 2.5rem; }
.brands-summary { max-width: 480px; margin-top: 2rem; color: var(--muted); }
.portfolio-note { padding-top: 1.4rem; border-top: 1px solid #c8d5e0; font-size: .82rem; }
.brand-directory { display: grid; grid-template-columns: repeat(2,1fr); border-top: 1px solid #c8d5e0; border-left: 1px solid #c8d5e0; }
.brand-directory article { min-height: 240px; padding: 1.75rem; background: rgba(255,255,255,.32); border-right: 1px solid #c8d5e0; border-bottom: 1px solid #c8d5e0; transition: background .2s,transform .2s; }
.brand-directory article:hover { background: rgba(255,255,255,.78); transform: translateY(-2px); }
.brand-directory .brand-type { display: block; min-height: 2.5em; color: #74869a; font-size: .62rem; font-weight: 700; letter-spacing: .13em; line-height: 1.5; }
.brand-directory h3 { margin: 2.1rem 0 .8rem; color: #0d3153; font-size: 1.25rem; line-height: 1.2; }
.brand-directory p { margin: 0; color: var(--muted); font-size: .89rem; line-height: 1.75; }
.brand-groups { border-top: 1px solid #c8d5e0; }
.brand-groups article { padding: 2rem 0 2.3rem; border-bottom: 1px solid #c8d5e0; }
.brand-groups article > p { margin: 0 0 1.3rem; color: #72859a; font-size: .67rem; font-weight: 700; letter-spacing: .16em; }
.brand-groups article div { display: flex; flex-wrap: wrap; gap: .65rem; }
.brand-groups span { padding: .68rem .95rem; color: #163650; background: rgba(255,255,255,.65); border: 1px solid #d3dee8; border-radius: 2px; font-size: .91rem; font-weight: 600; }

.faq { display: grid; grid-template-columns: .42fr 1.58fr; gap: 7vw; background: white; }
.faq-content > h2 { max-width: 940px; margin: 0 0 4rem; font-size: clamp(2.8rem,5vw,5.6rem); font-weight: 500; line-height: 1.04; letter-spacing: -.055em; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 1.8rem 3rem 1.8rem 0; cursor: pointer; list-style: none; font-size: 1.08rem; font-weight: 600; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: .4rem; top: 1.65rem; color: var(--blue); font-size: 1.4rem; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 780px; margin: -.4rem 0 1.8rem; padding-right: 3rem; color: var(--muted); line-height: 1.85; }

.closing { min-height: 640px; display: grid; grid-template-columns: 1.45fr .55fr; gap: 8vw; align-items: end; padding: 9rem 8vw; color: white; background: var(--navy); }
.closing h2 { margin-top: 2rem; }
.closing-note { align-self: end; padding-bottom: .8rem; }
.closing-note p { color: #a2b4c5; margin: 0 0 2.2rem; }
.closing-note a { display: flex; justify-content: space-between; align-items: center; padding: 1.1rem 0; border-top: 1px solid rgba(255,255,255,.24); border-bottom: 1px solid rgba(255,255,255,.24); text-decoration: none; font-size: .82rem; font-weight: 700; }
.closing-note b { color: var(--cyan); font-size: 1.1rem; }
footer { min-height: 105px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 4vw; color: #72869c; background: #03101f; font-size: .72rem; letter-spacing: .08em; }
.footer-brand { color: white; }
footer p { margin: 0; }
footer p:last-child { justify-self: end; }

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .mobile-menu { position: fixed; z-index: 35; inset: 82px 0 auto; padding: 1.5rem 5vw 2rem; background: rgba(5,19,38,.98); border-bottom: 1px solid rgba(255,255,255,.14); }
  .mobile-menu.open { display: grid; }
  .mobile-menu a { padding: .9rem 0; color: white; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .hero-copy { width: 75%; }
  .intro,.sectors,.section-top,.approach-heading,.brands,.faq { grid-template-columns: 1fr; }
  .intro,.sectors,.brands,.solutions,.approach,.faq { padding: 7rem 6vw; }
  .intro-columns { margin-top: 3.5rem; }
  .signature { grid-template-columns: 1fr; }
  .signature-logo { min-height: 520px; }
  .signature-copy { padding: 7rem 6vw; }
  .section-top,.approach-heading { gap: 3rem; }
  .solution-grid { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: repeat(2,1fr); }
  .brands-heading { position: static; }
  .brand-directory { grid-template-columns: repeat(3,1fr); }
  .closing { grid-template-columns: 1fr; min-height: 580px; padding: 7rem 6vw; }
}

@media (max-width: 620px) {
  .site-header { height: 72px; padding: 0 5vw; }
  .mobile-menu { top: 72px; }
  .brand-name { font-size: .76rem; }
  .brand-mark { width: 30px; height: 30px; }
  .hero { min-height: 760px; height: 100svh; padding: 120px 6vw 130px; align-items: flex-start; }
  .hero-image { object-position: 63% center; }
  .hero-shade { background: linear-gradient(90deg,rgba(4,16,33,.97),rgba(4,16,33,.72)); }
  .hero-copy { width: 100%; }
  .hero h1 { font-size: clamp(3.7rem,16vw,5.4rem); }
  body.hy .hero h1 { font-size: clamp(3.1rem,13vw,4.4rem); }
  .hero-links { align-items: flex-start; flex-direction: column; gap: 1.4rem; }
  .hero-foot { flex-wrap: wrap; gap: .65rem 1.2rem; bottom: 1.8rem; }
  .intro,.sectors,.brands,.solutions,.approach,.faq { padding: 5.5rem 6vw; }
  .intro-content h2,.section-top h2,.sectors h2,.approach h2,.brands h2,.closing h2,.signature h2 { font-size: 2.75rem; }
  body.hy .intro-content h2,body.hy .section-top h2,body.hy .sectors h2,body.hy .approach h2,body.hy .brands h2,body.hy .closing h2,body.hy .signature h2 { font-size: 2.35rem; }
  .intro-columns { grid-template-columns: 1fr; gap: 1rem; }
  .signature-logo { min-height: 390px; }
  .signature-copy { padding: 5.5rem 6vw; }
  .solution-grid,.steps { grid-template-columns: 1fr; }
  .brand-directory { grid-template-columns: 1fr; }
  .solution-grid article { min-height: 310px; }
  .solution-icon { margin-bottom: 4rem; }
  .sector-list div { grid-template-columns: 52px 1fr; }
  .closing { padding: 5.5rem 6vw; }
  .faq-content > h2 { font-size: 2.75rem; }
  footer { grid-template-columns: 1fr; gap: .7rem; padding: 2rem 6vw; }
  footer p:last-child { justify-self: start; }
}

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

.error-page { min-height: 100vh; display: grid; place-items: center; padding: 2rem; color: white; background: radial-gradient(circle at 80% 20%,#0a4b8e 0,transparent 32%),var(--navy); }
.error-card { width: min(680px,100%); }
.error-card .brand { margin-bottom: 5rem; }
.error-code { margin: 0; color: var(--cyan); font-size: .76rem; font-weight: 700; letter-spacing: .2em; }
.error-card h1 { margin: 1rem 0 1.5rem; font-size: clamp(3rem,8vw,6rem); font-weight: 500; line-height: 1; letter-spacing: -.06em; }
.error-card > p:not(.error-code) { margin: .35rem 0; color: #aebed0; }
.error-card .primary-link { margin-top: 2.5rem; }
