:root {
  --ink: #0c1c2e;
  --navy: #06182d;
  --navy-2: #0a2442;
  --navy-800: #12385f;
  --blue: #075fbe;
  --blue-2: #0b78dd;
  --cyan: #18b6e6;
  --paper: #ffffff;
  --mist: #f3f7fb;
  --mist-2: #e8f0f8;
  --muted: #526579;
  --line: #d9e2ec;
  --success: #087d5d;
  --danger: #b42318;
  --shadow-sm: 0 14px 40px rgba(6, 24, 45, 0.08);
  --shadow-lg: 0 20px 54px rgba(4, 20, 46, 0.14);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --container: 1240px;
  --header-h: 72px;
  --ease: cubic-bezier(.2, .75, .25, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
html[dir='rtl'] body { font-family: 'IBM Plex Sans Arabic', system-ui, sans-serif; }
html[lang='zh'] body { font-family: 'Noto Sans SC', system-ui, sans-serif; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { color: var(--paper); background: var(--blue); }
:focus-visible { outline: 3px solid #61c7f2; outline-offset: 3px; }

.skip-link {
  position: fixed; inset-inline-start: 18px; top: -60px; z-index: 2000;
  padding: 10px 16px; color: var(--paper); background: var(--ink); border-radius: 8px;
}
.skip-link:focus { top: 12px; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { position: relative; padding: 120px 0; }
.section--tight { padding: 76px 0; }
.section--mist { background: var(--mist); }
.section--navy { color: var(--paper); background: var(--navy); }
.section--line { border-block: 1px solid var(--line); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; margin: 0 0 18px;
  color: var(--blue); font-size: 12px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
}
.eyebrow::before { width: 28px; height: 2px; content: ''; background: currentColor; }
html[dir='rtl'] .eyebrow { letter-spacing: 0; }
.section--navy .eyebrow { color: var(--cyan); }
.section-heading { max-width: 780px; margin-bottom: 48px; }
.section-heading--center { margin-inline: auto; text-align: center; }
.section-heading--center .eyebrow { justify-content: center; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { line-height: 1.12; letter-spacing: -.035em; }
html[dir='rtl'] h1, html[dir='rtl'] h2, html[dir='rtl'] h3, html[dir='rtl'] h4 { letter-spacing: 0; }
html[dir='rtl'] h1 { line-height: 1.22; }
h1 { margin-bottom: 24px; font-size: clamp(44px, 5.7vw, 76px); font-weight: 700; }
h2 { margin-bottom: 20px; font-size: clamp(32px, 4vw, 52px); font-weight: 700; }
h3 { margin-bottom: 14px; font-size: clamp(22px, 2.1vw, 28px); font-weight: 700; }
h4 { margin-bottom: 10px; font-size: 18px; }
.lead { max-width: 720px; color: var(--muted); font-size: clamp(18px, 2vw, 22px); line-height: 1.75; }
.section--navy .lead { color: #b7c7dd; }
.accent-text { color: var(--blue); }

.site-header {
  position: sticky; top: 0; z-index: 1000; height: var(--header-h);
  background: var(--paper); border-bottom: 1px solid transparent;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 8px 30px rgba(7, 22, 47, .07); }
.header-inner { height: 100%; display: grid; grid-template-columns: minmax(200px, auto) 1fr auto; align-items: center; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 12px; width: max-content; min-width: 0; height: 52px; }
.brand img { width: 190px; max-height: 52px; object-fit: contain; object-position: left center; }
html[dir='rtl'] .brand img { object-position: right center; }
.brand-mark {
  position: relative; isolation: isolate; width: 40px; height: 38px; flex: 0 0 40px;
  background: var(--navy-2);
  clip-path: polygon(49% 2%, 100% 100%, 73% 100%, 49% 43%, 26% 100%, 0 100%);
}
.brand-mark::before {
  position: absolute; inset: 4px; z-index: 0; content: ''; background: var(--navy);
  clip-path: inherit;
}
.brand-mark::after {
  position: absolute; z-index: 1; width: 45px; height: 7px; inset-inline-start: -3px; top: 22px; content: '';
  background: var(--cyan); transform: rotate(-29deg); transform-origin: center;
  clip-path: polygon(0 42%, 100% 0, 84% 100%, 0 100%);
}
.brand-name {
  color: var(--navy); font-size: 17px; font-weight: 700; letter-spacing: .13em;
  line-height: 1; text-transform: uppercase; white-space: nowrap;
}
.brand-name span, .brand-name em { color: var(--blue); font-style: normal; }
.main-nav { display: flex; align-items: center; justify-content: center; gap: clamp(18px, 2.3vw, 34px); }
.main-nav > a { position: relative; padding: 25px 0 22px; color: #35465f; font-size: 14px; font-weight: 700; }
.main-nav > a::after { position: absolute; inset-inline: 0; bottom: 16px; height: 2px; content: ''; background: var(--blue); transform: scaleX(0); transition: transform .2s ease; }
.main-nav > a:hover::after, .main-nav > a[aria-current='page']::after { transform: scaleX(1); }
.main-nav > a[aria-current='page'] { color: var(--ink); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.mobile-nav-actions { display: none; }
.language-menu { position: relative; }
.language-menu summary { display: flex; min-height: 44px; align-items: center; gap: 7px; padding: 9px 11px; color: var(--muted); cursor: pointer; list-style: none; font-size: 13px; font-weight: 700; }
.language-menu summary::-webkit-details-marker { display: none; }
.language-menu summary::after { width: 7px; height: 7px; content: ''; border-inline-end: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor; transform: rotate(45deg) translateY(-2px); }
.language-menu[open] summary::after { transform: rotate(225deg) translate(-2px, -1px); }
.language-list { position: absolute; inset-inline-end: 0; top: calc(100% + 8px); width: 150px; padding: 8px; background: var(--paper); border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-sm); }
.language-list a { display: flex; justify-content: space-between; padding: 9px 10px; border-radius: 8px; font-size: 13px; font-weight: 700; }
.language-list a:hover, .language-list a[aria-current='true'] { background: var(--mist); color: var(--blue); }
.menu-button { display: none; width: 44px; height: 44px; padding: 0; background: transparent; border: 1px solid var(--line); border-radius: 10px; cursor: pointer; }
.menu-button span, .menu-button::before, .menu-button::after { display: block; width: 20px; height: 2px; margin: 4px auto; content: ''; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }
.menu-button[aria-expanded='true'] span { opacity: 0; }
.menu-button[aria-expanded='true']::before { transform: translateY(6px) rotate(45deg); }
.menu-button[aria-expanded='true']::after { transform: translateY(-6px) rotate(-45deg); }

.button-row { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.btn {
  display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 22px; border: 1px solid transparent; border-radius: 10px;
  cursor: pointer; font-size: 14px; font-weight: 700; transition: transform .2s var(--ease), box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { color: var(--paper); background: var(--blue); box-shadow: 0 8px 20px rgba(7, 95, 190, .18); }
.btn--primary:hover { background: #064f9f; box-shadow: 0 10px 24px rgba(7, 95, 190, .22); }
.btn--dark { color: var(--paper); background: var(--ink); }
.btn--outline { color: var(--ink); background: transparent; border-color: #b7c5d5; }
.btn--light { color: var(--ink); background: var(--paper); }
.btn--ghost-light { color: var(--paper); border-color: rgba(255, 255, 255, .35); }
.btn--small { min-height: 42px; padding: 9px 16px; }
.btn-arrow::after { content: '↗'; font-size: 17px; }
html[dir='rtl'] .btn-arrow::after { content: '↖'; }

.hero { position: relative; isolation: isolate; min-height: 700px; overflow: hidden; color: var(--paper); background: var(--navy); }
.hero::before {
  position: absolute; inset: 0; z-index: -2; content: ''; opacity: .28;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 80px 80px; clip-path: polygon(34% 0, 100% 0, 100% 100%, 8% 100%);
}
.hero::after {
  position: absolute; z-index: -1; width: 420px; height: 900px; inset-inline-end: -145px; top: -220px; content: '';
  background: rgba(11, 120, 221, .09); transform: rotate(18deg);
  clip-path: polygon(35% 0, 100% 0, 65% 100%, 0 100%);
}
.hero-inner { min-height: 700px; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr); align-items: center; gap: 70px; padding-block: 92px; }
.hero-copy { max-width: 790px; }
.hero .eyebrow { color: var(--cyan); }
.hero p { max-width: 700px; color: #bdcbe0; font-size: clamp(18px, 2vw, 22px); }
.hero-graphic { position: relative; min-height: 430px; }
.apex-frame {
  position: absolute; inset: 18px 4px 36px; overflow: hidden;
  background: linear-gradient(155deg, #2a5e8f 0%, #0a2442 72%);
  clip-path: polygon(49% 2%, 98% 96%, 74% 96%, 49% 43%, 25% 96%, 2% 96%);
}
.apex-frame::after {
  position: absolute; width: 112%; height: 26px; inset-inline-start: -8%; top: 54%; content: '';
  background: var(--cyan); transform: rotate(-29deg);
  clip-path: polygon(0 44%, 100% 0, 84% 100%, 0 100%);
}
.hero-panel {
  position: absolute; inset-inline: 42px 12px; bottom: 24px; padding: 24px;
  background: var(--navy-2); border: 1px solid rgba(255,255,255,.16); border-inline-start: 3px solid var(--cyan); border-radius: 10px;
}
.hero-panel-label { color: var(--cyan); font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.hero-panel strong { display: block; margin: 8px 0 5px; font-size: 22px; }
.hero-panel p { margin: 0; font-size: 14px; line-height: 1.6; }
.hero-service-line { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.12); }
.hero-service-line span { padding: 18px 10px; color: #b9c8d8; border-inline-end: 1px solid rgba(255,255,255,.12); text-align: center; font-size: 12px; font-weight: 700; }
.hero-service-line span:last-child { border-inline-end: 0; }

.page-hero { position: relative; overflow: hidden; color: var(--paper); background: var(--navy); }
.page-hero::after {
  position: absolute; width: 360px; height: 620px; inset-inline-end: -110px; top: -220px; content: '';
  background: rgba(11, 120, 221, .1); transform: rotate(20deg);
  clip-path: polygon(35% 0, 100% 0, 65% 100%, 0 100%);
}
.page-hero-inner { position: relative; z-index: 1; max-width: 900px; padding-block: 108px 116px; }
.page-hero h1 { font-size: clamp(44px, 6vw, 76px); }
.page-hero p { max-width: 760px; color: #c0cee1; font-size: 20px; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; color: #91a6c2; font-size: 13px; }
.breadcrumb a:hover { color: var(--paper); }

.service-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.service-card { position: relative; min-height: 330px; padding: 34px; overflow: hidden; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md); transition: border-color .25s ease, transform .25s var(--ease), box-shadow .25s ease; }
.service-card:hover { transform: translateY(-2px); border-color: #a9c7e5; box-shadow: var(--shadow-sm); }
.service-card::after { position: absolute; width: 130px; height: 8px; inset-inline-end: -38px; top: 42px; content: ''; background: var(--blue-2); transform: rotate(-42deg); opacity: .9; }
.card-index { display: block; margin-bottom: 54px; color: var(--blue); font-size: 13px; font-weight: 700; letter-spacing: .14em; }
.service-card p { color: var(--muted); }
.card-link { display: inline-flex; gap: 8px; align-items: center; margin-top: 18px; color: var(--blue); font-size: 14px; font-weight: 700; }
.card-link::after { content: '→'; }
html[dir='rtl'] .card-link::after { content: '←'; }

.feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.feature-card { padding: 28px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm); }
.feature-card .card-index { margin-bottom: 22px; }
.feature-card p { margin-bottom: 0; color: var(--muted); }
.section--navy .feature-card { background: var(--navy-2); border-color: rgba(255,255,255,.14); }
.section--navy .feature-card p { color: #afc0d6; }

.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(340px, .8fr); gap: 80px; align-items: start; }
.split--center { align-items: center; }
.statement-panel { position: relative; padding: 42px; color: var(--paper); background: var(--navy); border-radius: var(--radius-md); border: 1px solid var(--navy-800); }
.statement-panel::before { display: block; width: 62px; height: 7px; margin-bottom: 56px; content: ''; background: var(--cyan); transform: skew(-35deg); }
.statement-panel p { color: #b6c7da; }
.check-list { display: grid; gap: 13px; padding: 0; margin: 30px 0 0; list-style: none; }
.check-list li { position: relative; padding-inline-start: 28px; color: var(--muted); }
.check-list li::before { position: absolute; inset-inline-start: 0; top: .58em; width: 12px; height: 7px; content: ''; border-inline-start: 2px solid var(--blue); border-bottom: 2px solid var(--blue); transform: rotate(-45deg); }
html[dir='rtl'] .check-list li::before { transform: rotate(45deg); }

.process-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 0; counter-reset: process; }
.process-step { position: relative; padding: 28px 22px 10px; border-top: 1px solid #9ab0c7; counter-increment: process; }
.process-step::before { position: absolute; width: 11px; height: 11px; top: -6px; inset-inline-start: 22px; content: ''; background: var(--paper); border: 3px solid var(--blue); transform: rotate(45deg); }
.process-step span { display: block; margin-bottom: 40px; color: var(--blue); font-size: 12px; font-weight: 700; letter-spacing: .12em; }
.process-step span::after { content: '0' counter(process); }
.process-step p { color: var(--muted); font-size: 14px; }

.industry-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; }
.industry-item { min-height: 210px; padding: 28px; border-inline-end: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); }
.industry-item:nth-child(4n) { border-inline-end: 0; }
.industry-item:nth-last-child(-n+4) { border-bottom: 0; }
.industry-item strong { display: block; margin-bottom: 10px; font-size: 18px; }
.industry-item p { margin: 0; color: var(--muted); font-size: 14px; }

.faq-list { max-width: 880px; margin-inline: auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { position: relative; padding: 24px 50px 24px 0; cursor: pointer; list-style: none; font-size: 18px; font-weight: 700; }
html[dir='rtl'] .faq-item summary { padding: 24px 0 24px 50px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before, .faq-item summary::after { position: absolute; inset-inline-end: 8px; top: 35px; width: 18px; height: 2px; content: ''; background: var(--blue); }
.faq-item summary::after { transform: rotate(90deg); transition: transform .2s ease; }
.faq-item[open] summary::after { transform: rotate(0); }
.faq-item p { max-width: 760px; padding-bottom: 24px; color: var(--muted); }

.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 70px; align-items: start; }
.contact-list { display: grid; gap: 14px; margin-top: 34px; }
.contact-item { display: block; padding: 20px 22px; background: var(--mist); border: 1px solid var(--line); border-radius: 12px; }
.contact-item small { display: block; margin-bottom: 4px; color: var(--muted); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.contact-item strong { font-size: 15px; }
.contact-form { padding: 34px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.field { display: grid; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { color: #31445f; font-size: 13px; font-weight: 700; }
.field input, .field textarea, .field select { width: 100%; min-height: 52px; padding: 13px 14px; color: var(--ink); background: #fbfdff; border: 1px solid #cbd8e6; border-radius: 9px; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(8,120,238,.11); }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.consent-field label { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.consent-field input { width: 18px; min-height: 18px; flex: 0 0 18px; margin-top: 3px; }
.privacy-note { margin: 18px 0 0; color: var(--muted); font-size: 13px; }
.privacy-note a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.form-footer { display: flex; align-items: center; gap: 18px; margin-top: 20px; }
.form-status { margin: 0; font-size: 13px; }
.form-status[data-state='success'] { color: var(--success); }
.form-status[data-state='error'] { color: var(--danger); }

.map-card { position: relative; min-height: 360px; display: flex; align-items: flex-end; padding: 34px; overflow: hidden; color: var(--paper); background: var(--navy); border: 1px solid #12385f; border-radius: var(--radius-md); }
.map-card::before { position: absolute; width: 500px; height: 10px; left: -80px; top: 130px; content: ''; background: var(--cyan); transform: rotate(-24deg); opacity: .72; }
.map-card::after { position: absolute; width: 420px; height: 1px; right: -80px; top: 88px; content: ''; background: rgba(255,255,255,.18); transform: rotate(-24deg); }
.map-card-content { position: relative; z-index: 1; max-width: 580px; }
.map-card p { color: #b9cae0; }

.cta-band { position: relative; overflow: hidden; color: var(--paper); background: var(--blue); }
.cta-band::after { position: absolute; width: 420px; height: 16px; inset-inline-end: -70px; top: 45%; content: ''; background: rgba(114,216,255,.55); transform: rotate(-34deg); }
.cta-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 40px; padding-block: 70px; }
.cta-inner h2 { max-width: 720px; margin-bottom: 10px; font-size: clamp(32px, 4vw, 52px); }
.cta-inner p { margin: 0; color: #d7e6f7; }

.site-footer { color: #aabbd0; background: #050f23; }
.footer-main { display: grid; grid-template-columns: 1.3fr .8fr .8fr 1fr; gap: 50px; padding-block: 74px 54px; }
.footer-brand { width: 240px; margin-bottom: 22px; padding: 14px; background: var(--paper); border-radius: 12px; }
.footer-intro { max-width: 390px; }
.footer-title { margin-bottom: 18px; color: var(--paper); font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.footer-links { display: grid; gap: 11px; }
.footer-links a:hover { color: var(--paper); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: 13px; }
.footer-bottom-links { display: flex; gap: 20px; }

.legal { max-width: 820px; }
.legal h2 { margin-top: 48px; font-size: 30px; }
.legal p, .legal li { color: var(--muted); }
.legal li { margin-bottom: 8px; }

.js [data-reveal] { opacity: 0; transform: translateY(12px); transition: opacity .36s var(--ease), transform .36s var(--ease); }
.js [data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  :root { --header-h: 72px; }
  .header-inner { grid-template-columns: minmax(180px, auto) 1fr auto; gap: 18px; }
  .brand { width: max-content; }
  .brand-name { font-size: 16px; }
  .main-nav { gap: 17px; }
  .main-nav > a { font-size: 13px; }
  .header-actions .btn { display: none; }
  .hero-inner { grid-template-columns: 1fr .7fr; gap: 35px; }
  .hero-graphic { min-height: 360px; }
  .process-grid { grid-template-columns: repeat(3, 1fr); row-gap: 30px; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-item:nth-child(4n) { border-inline-end: 1px solid var(--line); }
  .industry-item:nth-child(2n) { border-inline-end: 0; }
  .industry-item:nth-last-child(-n+4) { border-bottom: 1px solid var(--line); }
  .industry-item:nth-last-child(-n+2) { border-bottom: 0; }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 30px), var(--container)); }
  .section { padding: 78px 0; }
  .header-inner { grid-template-columns: 1fr auto; }
  .brand { width: max-content; }
  .menu-button { display: block; }
  .main-nav {
    position: fixed; inset: var(--header-h) 0 0; display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0;
    padding: 26px 24px 50px; background: var(--paper); opacity: 0; visibility: hidden; pointer-events: none;
    transform: translateY(-12px); transition: opacity .24s var(--ease), transform .24s var(--ease), visibility 0s linear .24s; overflow-y: auto;
  }
  html[dir='rtl'] .main-nav { transform: translateY(-12px); }
  .main-nav.is-open { opacity: 1; visibility: visible; pointer-events: auto; transform: none; transition-delay: 0s; }
  .main-nav > a { padding: 17px 4px; border-bottom: 1px solid var(--line); font-size: 18px; }
  .main-nav > a::after { display: none; }
  .header-actions { position: absolute; inset-inline-end: 15px; }
  .header-actions .language-menu, .header-actions > .btn { display: none; }
  .mobile-nav-actions { display: grid; gap: 16px; padding-top: 24px; }
  .mobile-language-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .mobile-language-links a { min-height: 44px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 8px; font-size: 13px; font-weight: 700; }
  .mobile-language-links a[aria-current='true'] { color: var(--paper); background: var(--navy); border-color: var(--navy); }
  .mobile-nav-actions .btn { width: 100%; }
  .hero, .hero-inner { min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; padding-block: 80px; }
  .hero-graphic { min-height: 340px; }
  .hero-service-line { grid-template-columns: repeat(2, 1fr); }
  .service-grid, .feature-grid, .split, .contact-grid { grid-template-columns: 1fr; }
  .split, .contact-grid { gap: 45px; }
  .feature-grid { gap: 14px; }
  .process-grid { grid-template-columns: 1fr; gap: 0; }
  .process-step { border-top: 0; border-inline-start: 1px solid #9ab0c7; padding: 0 0 34px 32px; }
  .process-step::before { top: 5px; inset-inline-start: -7px; }
  .process-step span { margin-bottom: 10px; }
  .footer-main { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 560px) {
  h1 { font-size: 46px; }
  h2 { font-size: 36px; }
  .header-actions .language-menu { display: none; }
  .hero-inner { padding-block: 66px; }
  .hero-graphic { min-height: 300px; }
  .hero-panel { inset-inline: 18px 8px; bottom: 25px; }
  .service-grid, .industry-grid, .form-grid, .footer-main { grid-template-columns: 1fr; }
  .service-card { min-height: 290px; padding: 28px; }
  .industry-item { min-height: 160px; border-inline-end: 0 !important; border-bottom: 1px solid var(--line) !important; }
  .industry-item:last-child { border-bottom: 0 !important; }
  .page-hero-inner { padding-block: 80px 86px; }
  .contact-form { padding: 24px 20px; }
  .form-footer, .footer-bottom { align-items: stretch; flex-direction: column; }
  .form-footer .btn { width: 100%; }
  .footer-bottom-links { flex-wrap: wrap; }
  .section { padding: 64px 0; }
  .brand { width: max-content; gap: 9px; }
  .brand-mark { width: 35px; height: 33px; flex-basis: 35px; }
  .brand-name { font-size: 14px; letter-spacing: .1em; }
}

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