/* Innova Digital Trade — site styles
   Palette sampled from the logo. Geologica covers Latin, Turkish and Cyrillic. */

:root {
  --navy: #001B43;
  --navy-2: #0A2A5E;
  --blue: #0654B9;
  --blue-deep: #0346A4;
  --signal: #1C8DDB;
  --paper: #F3F6FA;
  --line: #DCE4EE;
  --ink: #0C1B33;
  --muted: #52627A;
  --white: #FFFFFF;

  --font: "Geologica", "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;

  --wrap: 1200px;
  --gutter: clamp(20px, 4vw, 40px);
  --r-panel: 24px;
  --r-card: 14px;
  --r-ctl: 8px;
  --shadow: 0 24px 60px -24px rgba(0, 27, 67, .35);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0; font-family: var(--font); font-size: 1rem; line-height: 1.6;
  color: var(--ink); background: var(--white); font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; letter-spacing: -0.02em; text-wrap: balance; }
p { margin: 0; }
.wrap { width: 100%; max-width: calc(var(--wrap) + 2 * var(--gutter)); margin: 0 auto; padding: 0 var(--gutter); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
:focus-visible { outline: 2px solid var(--signal); outline-offset: 3px; border-radius: 4px; }
.skip { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--white); padding: 10px 14px; border-radius: var(--r-ctl); }
.skip:focus { top: 12px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 22px; border-radius: var(--r-ctl); border: 1px solid transparent;
  font-weight: 500; font-size: .98rem; text-decoration: none; cursor: pointer;
  transition: background-color .2s, border-color .2s, color .2s;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue-deep); }
.btn-ghost { border-color: rgba(255,255,255,.45); color: var(--white); }
.btn-ghost:hover { background: rgba(255,255,255,.1); }
.btn-outline { border-color: var(--line); color: var(--navy); background: var(--white); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }

/* ---------- Top bar ---------- */
.topbar { background: var(--navy); color: rgba(255,255,255,.78); font-size: .84rem; position: relative; z-index: 40; }
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 40px; }
.topbar a { text-decoration: none; }
.topbar a:hover { color: var(--white); }
.topbar-right { display: flex; align-items: center; gap: 22px; }
.lang { display: flex; align-items: center; gap: 4px; }
.lang svg { width: 15px; height: 15px; margin-right: 4px; opacity: .8; }
.lang a, .lang span { text-decoration: none; padding: 3px 7px; border-radius: 5px; font-weight: 500; letter-spacing: .02em; }
.lang [aria-current="true"] { background: rgba(255,255,255,.14); color: var(--white); }
.lang .soon { opacity: .45; cursor: default; }

/* ---------- Header ---------- */
.site-header { position: absolute; left: 0; right: 0; top: 40px; z-index: 30; transition: background-color .25s, box-shadow .25s; }
.site-header.solid, .site-header.is-stuck { position: fixed; top: 0; background: var(--white); box-shadow: 0 1px 0 var(--line); }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 76px; }
.hdr-line { height: 1px; background: rgba(255,255,255,.22); max-width: var(--wrap); margin: 0 auto; }
.site-header.is-stuck .hdr-line, .site-header.solid .hdr-line { display: none; }
.brand { display: block; flex: none; }
.brand img { height: 42px; width: auto; }
.brand .logo-dark { display: none; }
.site-header.is-stuck .brand .logo-dark, .site-header.solid .brand .logo-dark, .site-header.menu-open .brand .logo-dark { display: block; }
.site-header.is-stuck .brand .logo-light, .site-header.solid .brand .logo-light, .site-header.menu-open .brand .logo-light { display: none; }
.main-nav ul { display: flex; gap: 6px; list-style: none; margin: 0; padding: 0; }
.main-nav a { display: block; padding: 10px 14px; border-radius: var(--r-ctl); text-decoration: none; color: var(--white); font-weight: 450; font-size: .98rem; }
.main-nav a:hover { background: rgba(255,255,255,.1); }
.site-header.is-stuck .main-nav a, .site-header.solid .main-nav a { color: var(--navy); }
.site-header.is-stuck .main-nav a:hover, .site-header.solid .main-nav a:hover { background: var(--paper); }
.main-nav a[aria-current="page"] { box-shadow: inset 0 -2px 0 var(--signal); border-radius: 0; }
.hdr-cta { display: flex; align-items: center; gap: 10px; }
.menu-toggle { display: none; width: 46px; height: 46px; border-radius: var(--r-ctl); border: 1px solid rgba(255,255,255,.4); background: transparent; color: var(--white); cursor: pointer; }
.menu-toggle svg { width: 22px; height: 22px; margin: auto; }
.site-header.is-stuck .menu-toggle, .site-header.solid .menu-toggle, .site-header.menu-open .menu-toggle { color: var(--navy); border-color: var(--line); }
.site-header.menu-open .hdr-line { display: none; }
.menu-toggle .i-close { display: none; }
.site-header.menu-open .menu-toggle .i-open { display: none; }
.site-header.menu-open .menu-toggle .i-close { display: block; }

/* ---------- Hero ---------- */
.hero {
  position: relative; color: var(--white); text-align: center;
  padding: calc(40px + 76px + clamp(56px, 9vh, 110px)) 0 clamp(210px, 22vw, 290px);
  background: var(--navy) url("../img/hero-city.jpg") center 40% / cover no-repeat;
  isolation: isolate;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(0,27,67,.80) 0%, rgba(0,27,67,.58) 50%, rgba(0,27,67,.66) 100%);
}
.hero h1 {
  font-weight: 300; font-size: clamp(2.6rem, 5.8vw, 4.9rem); line-height: 1.03; letter-spacing: -0.035em;
  max-width: 14ch; margin: 0 auto;
}
.hero-sub { max-width: 40rem; margin: 26px auto 0; font-size: clamp(1.05rem, 1.5vw, 1.2rem); line-height: 1.55; color: rgba(255,255,255,.86); font-weight: 350; }
.hero-form { display: flex; gap: 10px; justify-content: center; margin: 36px auto 0; max-width: 34rem; }
.hero-form input {
  flex: 1; min-width: 0; min-height: 50px; padding: 0 16px; border-radius: var(--r-ctl);
  border: 1px solid rgba(255,255,255,.5); background: rgba(0,27,67,.35); color: var(--white);
}
.hero-form input::placeholder { color: rgba(255,255,255,.7); }
.hero-form .btn { min-height: 50px; }
.hero-alt { margin-top: 16px; font-size: .92rem; color: rgba(255,255,255,.75); }
.hero-alt a { color: var(--white); }

.hero h1, .hero-sub, .hero-form, .hero-alt { animation: rise .9s cubic-bezier(.2,.7,.2,1) both; }
.hero-sub { animation-delay: .12s; }
.hero-form { animation-delay: .22s; }
.hero-alt { animation-delay: .3s; }
@keyframes rise { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* Two-lines panel overlapping the hero (Flexport's product shot, reimagined) */
.lines { position: relative; z-index: 5; margin-top: calc(-1 * clamp(160px, 17vw, 220px)); background: linear-gradient(to bottom, transparent clamp(160px, 17vw, 220px), var(--paper) 0); }
.lines-panel {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0; background: var(--white);
  border-radius: var(--r-panel); box-shadow: var(--shadow); overflow: hidden; border: 1px solid var(--line);
}
.line-card { display: grid; grid-template-rows: auto 1fr; text-decoration: none; color: inherit; }
.line-card + .line-card { border-left: 1px solid var(--line); }
.line-card figure { margin: 0; aspect-ratio: 16 / 7; overflow: hidden; }
.line-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.line-card:hover img { transform: scale(1.03); }
.line-body { padding: 26px 30px 30px; display: flex; flex-direction: column; gap: 10px; }
.line-body h2 { font-size: clamp(1.4rem, 2vw, 1.75rem); font-weight: 500; color: var(--navy); }
.line-body p { color: var(--muted); }
.line-link { margin-top: auto; padding-top: 8px; display: inline-flex; align-items: center; gap: 8px; font-weight: 500; color: var(--blue); }
.line-link svg { width: 18px; height: 18px; transition: transform .2s; }
.line-card:hover .line-link svg { transform: translateX(3px); }

/* ---------- Section basics ---------- */
.section { padding: clamp(72px, 10vw, 128px) 0; }
.section-head { max-width: 46rem; }
.section-head.center { text-align: center; margin: 0 auto; }
.section-head h2 { font-size: clamp(2rem, 3.6vw, 3rem); line-height: 1.08; color: var(--navy); }
.section-head p { margin-top: 18px; color: var(--muted); font-size: 1.08rem; }

/* ---------- Services explorer (ASBIS pattern) ---------- */
.explorer { background: var(--paper); padding-top: clamp(64px, 8vw, 100px); }
.seg { display: inline-flex; gap: 4px; padding: 5px; margin: 34px auto 0; background: var(--white); border: 1px solid var(--line); border-radius: 12px; }
.seg-wrap { text-align: center; }
.seg button { border: 0; background: transparent; padding: 10px 18px; border-radius: 8px; cursor: pointer; font-weight: 500; color: var(--muted); }
.seg button[aria-selected="true"] { background: var(--navy); color: var(--white); }
.explorer-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 24px; margin-top: 30px; align-items: start; }
.svc-list { background: var(--white); border: 1px solid var(--line); border-radius: 20px; padding: 12px; display: flex; flex-direction: column; gap: 8px; }
.svc-list[hidden] { display: none; }
.svc-item {
  display: grid; grid-template-columns: 56px 1fr 34px; gap: 16px; align-items: center; width: 100%; text-align: left;
  padding: 14px; border-radius: var(--r-card); border: 1px solid transparent; background: var(--paper); cursor: pointer;
  transition: border-color .2s, background-color .2s;
}
.svc-item:hover { border-color: var(--line); background: #EEF3F9; }
.svc-item[aria-selected="true"] { background: var(--white); border-color: #9DB8DD; box-shadow: 0 8px 22px -16px rgba(0,27,67,.45); }
.svc-icon { width: 56px; height: 56px; border-radius: 12px; background: var(--white); display: grid; place-items: center; color: var(--blue); border: 1px solid var(--line); }
.svc-item[aria-selected="true"] .svc-icon { background: var(--navy); color: var(--white); border-color: var(--navy); }
.svc-icon svg { width: 26px; height: 26px; }
.svc-item strong { display: block; font-weight: 550; color: var(--navy); font-size: 1.02rem; line-height: 1.3; }
.svc-item small { display: block; color: var(--muted); font-size: .88rem; line-height: 1.45; margin-top: 4px; }
.chev { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--navy); background: var(--white); }
.chev svg { width: 16px; height: 16px; }
.svc-item[aria-selected="true"] .chev { background: var(--blue); border-color: var(--blue); color: var(--white); }

.svc-panel { background: var(--white); border: 1px solid var(--line); border-radius: 20px; padding: clamp(24px, 3.4vw, 40px); position: sticky; top: 100px; }
.svc-panel[hidden] { display: none; }
.svc-panel h3 { font-size: clamp(1.8rem, 2.8vw, 2.5rem); font-weight: 500; line-height: 1.1; color: var(--navy); letter-spacing: -0.03em; }
.svc-panel > p { margin-top: 16px; color: var(--muted); max-width: 38rem; }
.panel-body { display: grid; grid-template-columns: minmax(0, 1fr) 42%; gap: 28px; margin-top: 26px; align-items: start; }
.checks { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 12px; }
.checks li { display: grid; grid-template-columns: 22px 1fr; gap: 12px; font-size: .96rem; line-height: 1.45; }
.checks svg { width: 20px; height: 20px; color: var(--blue); margin-top: 1px; }
.panel-photo { margin: 0; border-radius: 16px; overflow: hidden; aspect-ratio: 1; background: var(--paper); }
.panel-photo img { width: 100%; height: 100%; object-fit: cover; }
.related { margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--line); }
.related h4 { font-size: .92rem; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.chip { border: 1px solid var(--line); background: var(--white); border-radius: 999px; padding: 7px 14px; font-size: .9rem; font-weight: 500; color: var(--navy); cursor: pointer; }
.chip:hover { border-color: var(--blue); color: var(--blue); }

/* ---------- Route map (Intellias pattern) ---------- */
.network { padding-top: clamp(64px, 8vw, 104px); }
.network .section-head { max-width: 40rem; }
.map-panel { position: relative; margin-top: 40px; background: var(--paper); border-radius: 28px; padding: clamp(20px, 3vw, 36px); overflow: hidden; }
.map-top { position: relative; z-index: 2; display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; }
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 220px)); gap: 10px; }
.steps li { display: grid; grid-template-columns: 52px 1fr; align-items: stretch; border-radius: 12px; overflow: hidden; background: #E2E9F2; }
.steps b { display: grid; place-items: center; background: var(--white); font-family: var(--mono); font-weight: 500; color: var(--blue); font-size: 1rem; }
.steps span { padding: 13px 14px; font-size: .92rem; line-height: 1.35; color: var(--navy); font-weight: 450; }
.place { width: min(100%, 330px); }
.place-head { display: flex; justify-content: flex-end; align-items: center; gap: 10px; min-height: 36px; font-weight: 500; color: var(--navy); }
.place-clear { width: 32px; height: 32px; border-radius: 8px; border: 1px solid var(--line); background: var(--white); display: grid; place-items: center; cursor: pointer; }
.place-clear[hidden] { display: none; }
.place-clear svg { width: 16px; height: 16px; }
.place-card { margin-top: 12px; background: var(--white); border-radius: 16px; padding: 18px 20px 20px; box-shadow: 0 16px 36px -24px rgba(0,27,67,.4); }
.tag { display: inline-block; padding: 3px 10px; border-radius: 6px; background: var(--paper); font-size: .78rem; font-weight: 500; color: var(--navy); }
.place-card h3 { margin-top: 10px; font-size: 1.35rem; font-weight: 500; color: var(--navy); }
.place-card p { margin-top: 6px; color: var(--muted); font-size: .94rem; line-height: 1.5; }
.route-code { margin-top: 12px; font-family: var(--mono); font-size: .85rem; color: var(--blue); }

.map { position: relative; margin-top: -40px; }
.map-inner { position: relative; }
.map svg { width: 100%; height: auto; }
.map .land { stroke: #C9D5E4; }
.map .sup { stroke: #8FB2E0; transition: stroke .3s; }
.map .sup.on { stroke: var(--blue); }
.map .hub { stroke: var(--signal); }
.map .route { fill: none; stroke: #6F9BD8; stroke-width: 2; stroke-dasharray: 5 6; transition: stroke .3s, opacity .3s; }
.map .route.on { stroke: var(--blue); stroke-width: 2.6; }
.map.has-sel .route:not(.on) { opacity: .35; }
.map .hub-ring { fill: none; stroke: var(--signal); stroke-width: 1.5; transform-box: fill-box; transform-origin: center; animation: pulse 2.6s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(.4); opacity: .9; } 100% { transform: scale(2.4); opacity: 0; } }
.pin {
  position: absolute; transform: translate(-10px, -50%); z-index: 3;
  display: flex; align-items: center; gap: 6px; padding: 4px 9px 4px 5px; border-radius: 999px;
  background: var(--white); border: 1px solid var(--line); font-size: .8rem; font-weight: 500; color: var(--navy);
  cursor: pointer; white-space: nowrap; box-shadow: 0 4px 12px -6px rgba(0,27,67,.35);
}
.pin i { width: 10px; height: 10px; border-radius: 50%; background: var(--blue); flex: none; }
.pin.hub i { background: var(--signal); }
.pin[aria-pressed="true"] { background: var(--navy); color: var(--white); border-color: var(--navy); }
.map-note { margin-top: 14px; font-size: .88rem; color: var(--muted); }
.map-draw .route { animation: draw 1.4s ease-out backwards; }
@keyframes draw { from { opacity: 0; stroke-dashoffset: 120; } to { opacity: 1; stroke-dashoffset: 0; } }

/* ---------- Contact (Intellias "Let's talk") ---------- */
.talk { background: var(--navy); color: var(--white); padding: clamp(72px, 10vw, 120px) 0 0; }
.talk-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 480px); gap: clamp(32px, 6vw, 80px); align-items: start; }
.talk h2 { font-size: clamp(2rem, 3.6vw, 3rem); line-height: 1.08; max-width: 16ch; }
.talk-lede { margin-top: 18px; max-width: 34rem; color: rgba(255,255,255,.78); font-size: 1.08rem; }
.contact-tiles { display: grid; gap: 10px; margin-top: 34px; max-width: 360px; }
.ctile { display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: center; padding: 10px; border-radius: 12px; background: var(--navy-2); text-decoration: none; }
a.ctile:hover { background: #10336F; }
.ctile .ic { width: 44px; height: 44px; border-radius: 10px; background: var(--white); color: var(--navy); display: grid; place-items: center; }
.ctile .ic svg { width: 20px; height: 20px; }
.ctile small { display: block; font-size: .78rem; color: rgba(255,255,255,.6); }
.ctile span { display: block; font-weight: 500; }

.form-card { background: var(--white); color: var(--ink); border-radius: 20px; padding: clamp(22px, 3vw, 34px); }
.form-card h3 { font-size: 1.4rem; font-weight: 500; color: var(--navy); line-height: 1.25; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 20px; }
.field { display: grid; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .85rem; font-weight: 500; color: var(--navy); }
.field input, .field select, .field textarea {
  width: 100%; min-height: 46px; padding: 10px 13px; border-radius: var(--r-ctl);
  border: 1px solid var(--line); background: var(--paper);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); background: var(--white); box-shadow: 0 0 0 3px rgba(6,84,185,.15); }
.consent { display: grid; grid-template-columns: 20px 1fr; gap: 10px; margin-top: 16px; font-size: .84rem; color: var(--muted); line-height: 1.45; }
.consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--blue); }
.form-card .btn { margin-top: 20px; width: 100%; }
.hp { display: none; }

/* ---------- Footer ---------- */
.site-footer { margin-top: clamp(64px, 8vw, 100px); border-top: 1px solid rgba(255,255,255,.14); padding: 44px 0 36px; color: rgba(255,255,255,.72); font-size: .92rem; }
.foot-grid { display: grid; grid-template-columns: 1.4fr repeat(2, 1fr); gap: 32px; }
.foot-grid img { height: 40px; width: auto; }
.foot-grid p { margin-top: 16px; max-width: 26rem; }
.foot-grid h4 { font-size: .9rem; font-weight: 500; color: var(--white); letter-spacing: 0; }
.foot-grid ul { list-style: none; margin: 12px 0 0; padding: 0; display: grid; gap: 8px; }
.foot-grid a { text-decoration: none; }
.foot-grid a:hover { color: var(--white); }
.foot-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: .85rem; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .explorer-grid { grid-template-columns: 1fr; }
  .svc-panel { position: static; }
  .map-top { flex-direction: column; }
  .place { width: 100%; }
  .place-head { justify-content: flex-start; }
  .map { margin-top: 10px; }
}
@media (max-width: 900px) {
  .main-nav { position: fixed; inset: 0 0 auto 0; top: 0; background: var(--white); padding: 136px var(--gutter) 28px; transform: translateY(-105%); transition: transform .3s; box-shadow: var(--shadow); z-index: -1; }
  .main-nav.open { transform: none; }
  .site-header.is-stuck .main-nav { padding-top: 96px; }
  .main-nav ul { flex-direction: column; gap: 2px; }
  .main-nav a { color: var(--navy) !important; font-size: 1.1rem; padding: 14px 8px; }
  .menu-toggle { display: grid; }
  .hdr-cta .btn { display: none; }
  .lines-panel { grid-template-columns: 1fr; }
  .line-card + .line-card { border-left: 0; border-top: 1px solid var(--line); }
  .talk-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-grid > div:first-child { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .topbar-left { display: none; }
  .topbar .wrap { justify-content: flex-end; }
  .hero-form { flex-direction: column; }
  .panel-body { grid-template-columns: 1fr; }
  .panel-photo { aspect-ratio: 16 / 10; order: -1; }
  .steps { grid-template-columns: 1fr; width: 100%; }
  .form-grid { grid-template-columns: 1fr; }
  .svc-item { grid-template-columns: 48px 1fr 30px; gap: 12px; padding: 12px; }
  .svc-icon { width: 48px; height: 48px; }
  .map { overflow-x: auto; margin: 10px calc(-1 * clamp(20px, 3vw, 36px)) 0; padding: 0 12px 8px; scrollbar-width: thin; }
  .map-inner { min-width: 760px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}


/* =====================================================================
   v2 additions
   ===================================================================== */

/* Mobile-only "Contact us" inside the menu panel */
.nav-cta { display: none; }

/* Back to top */
.to-top {
  position: fixed; right: clamp(14px, 2vw, 28px); bottom: clamp(14px, 2vw, 28px); z-index: 60;
  width: 50px; height: 50px; border-radius: 50%; border: 1px solid rgba(255,255,255,.35);
  background: var(--blue); color: var(--white); display: grid; place-items: center; cursor: pointer;
  box-shadow: 0 12px 28px -10px rgba(0,27,67,.6);
  opacity: 0; transform: translateY(12px); pointer-events: none; transition: opacity .25s, transform .25s, background-color .2s;
}
.to-top svg { width: 22px; height: 22px; }
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--blue-deep); }

/* Section heading with the paragraph on the right */
.split-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(20px, 5vw, 72px); align-items: end; }
.split-head h2 { font-size: clamp(2rem, 3.6vw, 3rem); line-height: 1.08; color: var(--navy); }
.split-head p { color: var(--muted); font-size: 1.08rem; max-width: 34rem; }

/* Why Innova: stats band + hairline grid of benefits */
.stats {
  margin-top: clamp(36px, 5vw, 56px); display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--navy); color: var(--white); border-radius: var(--r-panel); padding: clamp(28px, 4vw, 48px);
}
.stat { padding: 0 clamp(14px, 2vw, 28px); }
.stat:first-child { padding-left: 0; }
.stat + .stat { border-left: 1px solid rgba(255,255,255,.14); }
.stat b { display: block; font-weight: 300; font-size: clamp(2.4rem, 4.6vw, 3.8rem); letter-spacing: -0.045em; line-height: 1; }
.stat span { display: block; margin-top: 12px; color: rgba(255,255,255,.72); font-size: .95rem; line-height: 1.4; }

.benefits {
  margin-top: clamp(28px, 4vw, 40px); display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 20px; overflow: hidden;
}
.benefits.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.benefit { background: var(--white); padding: clamp(22px, 3vw, 32px); display: grid; grid-template-columns: 44px 1fr; gap: 18px; align-items: start; }
.bi { width: 44px; height: 44px; border-radius: 11px; background: var(--paper); color: var(--blue); display: grid; place-items: center; flex: none; }
.bi svg { width: 22px; height: 22px; }
.bi.big { width: 64px; height: 64px; border-radius: 16px; background: var(--white); }
.bi.big svg { width: 30px; height: 30px; }
.benefit h3 { font-size: 1.12rem; font-weight: 550; color: var(--navy); letter-spacing: -0.01em; line-height: 1.3; }
.benefit p { margin-top: 8px; color: var(--muted); font-size: .96rem; line-height: 1.55; }

/* Scenarios */
.scenarios { background: var(--paper); }
.sc-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; margin-top: clamp(32px, 4vw, 48px); }
.sc-card { background: var(--white); border-radius: 18px; overflow: hidden; border: 1px solid var(--line); display: flex; flex-direction: column; }
.sc-card figure { margin: 0; aspect-ratio: 16 / 10; overflow: hidden; }
.sc-card img { width: 100%; height: 100%; object-fit: cover; }
.sc-body { padding: 22px 26px 28px; }
.sc-tags { display: flex; gap: 6px; }
.sc-tags span { font-size: .78rem; font-weight: 500; padding: 3px 10px; border-radius: 6px; }
.sc-tags .t-it { background: #E3EDFA; color: var(--blue-deep); }
.sc-tags .t-trade { background: var(--navy); color: var(--white); }
.sc-body h3 { margin-top: 14px; font-size: 1.3rem; font-weight: 500; color: var(--navy); line-height: 1.25; }
.sc-body p { margin-top: 10px; color: var(--muted); font-size: .96rem; }

/* Testimonials */
.voices { background: var(--paper); }
.voice-panel { position: relative; margin-top: clamp(28px, 4vw, 40px); background: var(--white); border: 1px solid var(--line); border-radius: var(--r-panel); padding: clamp(28px, 5vw, 64px); padding-left: clamp(28px, 9vw, 130px); }
.qmark { position: absolute; left: clamp(20px, 3.4vw, 48px); top: clamp(26px, 4vw, 52px); font-size: clamp(5rem, 9vw, 8rem); line-height: .8; font-weight: 300; color: var(--blue); }
.voice { margin: 0; }
.voice.is-on { animation: vfade .45s ease both; }
@keyframes vfade { from { opacity: 0; transform: translateX(10px); } to { opacity: 1; transform: none; } }
.voice blockquote { margin: 18px 0 0; }
.voice blockquote p { font-size: clamp(1.3rem, 2.3vw, 1.9rem); line-height: 1.42; font-weight: 350; color: var(--navy); letter-spacing: -0.015em; max-width: 46rem; }
.voice figcaption { margin-top: 28px; display: flex; align-items: center; gap: 14px; }
.avatar { width: 50px; height: 50px; border-radius: 50%; background: var(--navy); color: var(--white); display: grid; place-items: center; font-weight: 500; font-size: .95rem; flex: none; }
.voice cite { display: block; font-style: normal; font-weight: 550; color: var(--navy); }
.voice small { display: block; color: var(--muted); font-size: .9rem; }
.voice-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 36px; padding-top: 22px; border-top: 1px solid var(--line); }
.vcount { font-family: var(--mono); font-size: .9rem; color: var(--muted); }
.vbtns { display: flex; gap: 8px; }
.vbtn { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); background: var(--white); color: var(--navy); display: grid; place-items: center; cursor: pointer; }
.vbtn:hover { border-color: var(--blue); color: var(--blue); }
.vbtn svg { width: 18px; height: 18px; }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 7fr); gap: clamp(32px, 6vw, 88px); align-items: start; }
.faq-side h2 { font-size: clamp(2rem, 3.6vw, 3rem); line-height: 1.08; color: var(--navy); }
.faq-side p { margin-top: 16px; color: var(--muted); }
.faq-side .btn { margin-top: 26px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 24px; padding: 22px 0; font-size: 1.1rem; font-weight: 500; color: var(--navy); line-height: 1.35; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover { color: var(--blue); }
.pm { width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; flex: none; transition: transform .25s, background-color .2s; }
.pm svg { width: 16px; height: 16px; }
.faq-list details[open] .pm { transform: rotate(45deg); background: var(--navy); color: var(--white); border-color: var(--navy); }
.faq-list .ans { padding: 0 56px 24px 0; color: var(--muted); }

/* Inner page hero */
.page-hero {
  position: relative; color: var(--white); isolation: isolate;
  padding: calc(40px + 76px + clamp(56px, 8vw, 100px)) 0 clamp(64px, 8vw, 110px);
  background-color: var(--navy); background-position: center; background-size: cover; background-repeat: no-repeat;
}
.page-hero::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(0,27,67,.92) 0%, rgba(0,27,67,.7) 55%, rgba(0,27,67,.45) 100%); }
.crumbs { font-size: .9rem; color: rgba(255,255,255,.7); }
.crumbs a { color: rgba(255,255,255,.85); text-decoration: none; }
.crumbs a:hover { color: var(--white); text-decoration: underline; }
.page-hero h1 { margin-top: 16px; font-weight: 300; font-size: clamp(2.4rem, 5.2vw, 4.2rem); line-height: 1.04; letter-spacing: -0.035em; max-width: 15ch; }
.page-hero p { margin-top: 20px; max-width: 38rem; color: rgba(255,255,255,.86); font-size: clamp(1.05rem, 1.5vw, 1.2rem); font-weight: 350; }

/* About */
.intro-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(28px, 6vw, 88px); align-items: start; }
.intro-grid .lead { font-size: clamp(1.6rem, 2.7vw, 2.3rem); line-height: 1.22; color: var(--navy); font-weight: 350; letter-spacing: -0.025em; }
.intro-grid .copy p { color: var(--muted); font-size: 1.04rem; }
.intro-grid .copy p + p { margin-top: 16px; }
.facts { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: clamp(40px, 6vw, 72px); border-top: 1px solid var(--line); }
.fact { padding: 24px 20px 0 0; }
.fact + .fact { border-left: 1px solid var(--line); padding-left: 24px; }
.fact small { display: block; color: var(--muted); font-size: .88rem; }
.fact b { display: block; margin-top: 6px; font-size: clamp(1.2rem, 1.8vw, 1.5rem); font-weight: 450; color: var(--navy); letter-spacing: -0.01em; }
.mv-sec { padding-top: 0; }
.mv { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mv-card { border-radius: var(--r-panel); padding: clamp(28px, 4vw, 48px); }
.mv-card h2 { font-size: 1rem; font-weight: 500; letter-spacing: 0; }
.mv-card p { margin-top: 16px; font-size: clamp(1.25rem, 2.1vw, 1.65rem); line-height: 1.35; font-weight: 350; letter-spacing: -0.015em; }
.mv-card.dark { background: var(--navy); color: var(--white); }
.mv-card.dark h2 { color: #7FB8EC; }
.mv-card.light { background: var(--paper); color: var(--navy); }
.mv-card.light h2 { color: var(--blue); }
.what { background: var(--paper); }
.what-panel { margin-top: clamp(28px, 4vw, 40px); }
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 6vw, 80px); align-items: center; }
.split h2 { font-size: clamp(2rem, 3.4vw, 2.8rem); line-height: 1.1; color: var(--navy); }
.split-p { margin-top: 18px; color: var(--muted); font-size: 1.05rem; margin-bottom: 24px; }
.split-photo { margin: 0; border-radius: 20px; overflow: hidden; aspect-ratio: 4 / 3; }
.split-photo img { width: 100%; height: 100%; object-fit: cover; }
.band { background: var(--blue); color: var(--white); padding: clamp(40px, 5vw, 56px) 0; }
.band-inner { display: flex; justify-content: space-between; align-items: center; gap: 28px; flex-wrap: wrap; }
.band h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); }
.band p { margin-top: 8px; color: rgba(255,255,255,.85); max-width: 38rem; }
.band .btn-primary { background: var(--white); color: var(--navy); }
.band .btn-primary:hover { background: var(--paper); }

/* Careers */
.areas-sec { background: var(--paper); }
.areas { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; margin-top: clamp(28px, 4vw, 40px); }
.area { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: clamp(22px, 3vw, 30px); }
.area h3 { margin-top: 18px; font-size: 1.3rem; font-weight: 500; color: var(--navy); }
.role-chips { list-style: none; margin: 16px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.role-chips li { padding: 6px 12px; border-radius: 999px; background: var(--paper); font-size: .88rem; color: var(--navy); }
.openings { display: grid; grid-template-columns: auto minmax(0, 1fr) auto; gap: clamp(18px, 3vw, 32px); align-items: center; background: var(--paper); border: 1px dashed #A9BEDA; border-radius: var(--r-panel); padding: clamp(24px, 4vw, 44px); }
.openings h2 { font-size: clamp(1.4rem, 2.4vw, 1.9rem); color: var(--navy); line-height: 1.2; }
.openings p { margin-top: 10px; color: var(--muted); max-width: 40rem; }
.process-head { margin-top: clamp(56px, 7vw, 88px); }
.process-head h2 { font-size: clamp(1.7rem, 2.8vw, 2.3rem); }
.process { list-style: none; padding: 0; margin: 28px 0 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; counter-reset: none; }
.process li { position: relative; padding-top: 22px; border-top: 2px solid var(--line); }
.process li:first-child { border-top-color: var(--blue); }
.process b { font-family: var(--mono); font-weight: 500; color: var(--blue); font-size: .95rem; }
.process h3 { margin-top: 10px; font-size: 1.15rem; font-weight: 550; color: var(--navy); }
.process p { margin-top: 8px; color: var(--muted); font-size: .95rem; }
.apply-sec { background: var(--paper); }
.apply-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 560px); gap: clamp(32px, 6vw, 80px); align-items: start; }
.apply-side h2 { font-size: clamp(2rem, 3.4vw, 2.8rem); line-height: 1.1; color: var(--navy); }
.apply-side > p { margin-top: 16px; color: var(--muted); font-size: 1.05rem; }
.apply-note { font-size: .95rem; }
.apply-note a { color: var(--blue); font-weight: 500; }
.apply-side .split-photo { margin-top: 28px; }
.apply-sec .form-card { border: 1px solid var(--line); }
.field input[type=file] { background: var(--white); border-style: dashed; padding: 10px; min-height: 52px; cursor: pointer; }
.field input[type=file]::file-selector-button { margin-right: 12px; border: 0; border-radius: 6px; background: var(--navy); color: var(--white); padding: 7px 12px; font: inherit; font-size: .88rem; cursor: pointer; }

/* Thanks / 404 */
.simple-main { padding-top: calc(76px + clamp(90px, 12vw, 140px)); min-height: 62vh; }
.simple-h { font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1.08; color: var(--navy); font-weight: 400; }
.simple-cta { margin-top: 28px; }
.simple-foot { padding-top: 0; }
.simple-foot .site-footer { margin-top: 0; border-top: 0; }

@media (max-width: 1080px) {
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 28px; }
  .stat:nth-child(3) { padding-left: 0; border-left: 0; }
  .benefits { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 32px; }
}
@media (max-width: 900px) {
  .main-nav .nav-cta { display: block; margin-top: 14px; }
  .main-nav .nav-cta a { color: var(--white) !important; background: var(--blue); text-align: center; border-radius: var(--r-ctl); }
  .split-head, .faq-grid, .intro-grid, .mv, .split, .apply-grid { grid-template-columns: 1fr; }
  .split-head { align-items: start; }
  .sc-grid, .areas { grid-template-columns: 1fr; }
  .facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fact:nth-child(3) { border-left: 0; padding-left: 0; }
  .openings { grid-template-columns: 1fr; }
  .openings .btn { justify-self: start; }
}
@media (max-width: 640px) {
  .benefits, .benefits.two { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .voice-panel { padding: 72px 22px 24px; }
  .qmark { left: 20px; top: 22px; font-size: 4.5rem; }
  .faq-list .ans { padding-right: 0; }
  .stats { padding: 24px; }
  .stat { padding: 0 12px; }
  .stat:nth-child(odd) { padding-left: 0; border-left: 0; }
}

/* =====================================================================
   v3: mega menu, inner page templates, documents, footer
   ===================================================================== */
.paper { background: var(--paper); }
.center-link { text-align: center; margin-top: 36px; }
.fine { margin-top: 22px; font-size: .88rem; color: var(--muted); }

/* ---------- Mega menu (desktop) ---------- */
.nav-list { display: flex; gap: 2px; list-style: none; margin: 0; padding: 0; align-items: center; }
.nav-btn { display: flex; align-items: center; gap: 6px; padding: 10px 13px; border-radius: 8px; background: none; border: 0; color: var(--white); font-weight: 450; font-size: .97rem; cursor: pointer; }
.nav-btn svg { width: 15px; height: 15px; transition: transform .2s; }
.nav-btn:hover { background: rgba(255,255,255,.1); }
.has-mega.open .nav-btn svg { transform: rotate(180deg); }
.nav-btn[data-current] { box-shadow: inset 0 -2px 0 var(--signal); border-radius: 0; }
.site-header.is-stuck .nav-btn, .site-header.mega-open .nav-btn, .site-header.menu-open .nav-btn { color: var(--navy); }
.site-header.is-stuck .nav-btn:hover, .site-header.mega-open .nav-btn:hover { background: var(--paper); }
.site-header.mega-open { background: var(--white); box-shadow: 0 1px 0 var(--line); }
.site-header.mega-open .brand .logo-dark { display: block; }
.site-header.mega-open .brand .logo-light { display: none; }
.site-header.mega-open .hdr-line { display: none; }
.site-header.mega-open .menu-toggle { color: var(--navy); border-color: var(--line); }
.mega {
  position: absolute; left: 0; right: 0; top: 100%; background: var(--white); border-top: 1px solid var(--line);
  box-shadow: 0 40px 60px -40px rgba(0,27,67,.45); opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .18s, transform .18s, visibility .18s;
}
.has-mega.open .mega { opacity: 1; visibility: visible; transform: none; }
.site-header .mega-inner { display: grid; min-height: 0; align-items: start; justify-content: stretch; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px 40px; padding-top: 26px; padding-bottom: 22px; }
.mega-h { margin: 0 0 8px 12px; font-size: .85rem; font-weight: 500; color: var(--muted); }
.main-nav .mega ul { display: grid; grid-template-columns: 1fr; gap: 2px; list-style: none; margin: 0; padding: 0; }
.site-header .mega-inner.single { grid-template-columns: 1fr; }
.main-nav .mega-inner.single ul { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.main-nav .mega a { display: grid; grid-template-columns: 36px 1fr; gap: 12px; align-items: start; padding: 10px 12px; border-radius: 10px; text-decoration: none; color: var(--navy); font-size: inherit; }
.main-nav .mega a:hover { background: var(--paper); }
.mi { width: 36px; height: 36px; border-radius: 9px; background: var(--paper); color: var(--blue); display: grid; place-items: center; }
.mi svg { width: 18px; height: 18px; }
.main-nav .mega a:hover .mi { background: var(--white); }
.mega b { display: block; font-weight: 550; font-size: .95rem; line-height: 1.3; }
.mega small { display: block; color: var(--muted); font-size: .84rem; line-height: 1.4; margin-top: 2px; }
.main-nav a.mega-all { grid-column: 1 / -1; display: inline-flex; grid-template-columns: none; align-items: center; gap: 8px; width: max-content; margin-top: 8px; padding: 10px 12px; color: var(--blue); font-weight: 500; }
.mega-all svg { width: 16px; height: 16px; }

/* ---------- Heroes ---------- */
.split-hero, .doc-hero { position: relative; background: var(--navy); color: var(--white); isolation: isolate; overflow: hidden; }
.split-hero::after, .doc-hero::after {
  content: ""; position: absolute; inset: 0 0 0 45%; z-index: -1; opacity: .5;
  background-image: radial-gradient(rgba(143,178,224,.35) 1.3px, transparent 1.6px); background-size: 15px 15px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 60%); mask-image: linear-gradient(90deg, transparent, #000 60%);
}
.split-hero { padding: calc(40px + 76px + clamp(36px, 5vw, 64px)) 0 clamp(56px, 7vw, 88px); }
.split-hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(28px, 5vw, 72px); align-items: center; }
.split-hero h1 { margin-top: 16px; font-weight: 300; font-size: clamp(2.3rem, 4.6vw, 3.8rem); line-height: 1.05; letter-spacing: -0.035em; }
.split-hero .lead { margin-top: 18px; font-size: clamp(1.05rem, 1.5vw, 1.22rem); color: rgba(255,255,255,.85); max-width: 34rem; font-weight: 350; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.split-hero figure { margin: 0; border-radius: 20px; overflow: hidden; aspect-ratio: 4 / 3; box-shadow: 0 30px 60px -30px rgba(0,0,0,.6); }
.split-hero img { width: 100%; height: 100%; object-fit: cover; }
.doc-hero { padding: calc(40px + 76px + clamp(32px, 5vw, 60px)) 0 clamp(44px, 6vw, 68px); }
.doc-hero h1 { margin-top: 14px; font-weight: 300; font-size: clamp(2.1rem, 4.2vw, 3.3rem); line-height: 1.08; letter-spacing: -0.03em; max-width: 24ch; }
.doc-hero .lead { margin-top: 16px; max-width: 44rem; color: rgba(255,255,255,.82); font-size: 1.1rem; font-weight: 350; }
.doc-updated { margin-top: 16px; font-size: .88rem; color: rgba(255,255,255,.6); }
.crumbs { font-size: .9rem; color: rgba(255,255,255,.7); }
.crumbs a { color: rgba(255,255,255,.85); text-decoration: none; }
.crumbs a:hover { color: var(--white); text-decoration: underline; }

/* ---------- Service / route overview ---------- */
.overview-grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(28px, 5vw, 72px); align-items: start; }
.overview-text h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); line-height: 1.1; color: var(--navy); }
.overview-text p { margin-top: 16px; color: var(--muted); font-size: 1.06rem; }
.sub-h { margin: 34px 0 14px; font-size: 1.2rem; font-weight: 550; color: var(--navy); letter-spacing: -0.01em; }
.glance { background: var(--paper); border: 1px solid var(--line); border-radius: 20px; padding: clamp(22px, 3vw, 30px); position: sticky; top: 100px; }
.glance h3 { font-size: 1.1rem; font-weight: 550; color: var(--navy); margin-bottom: 16px; }
.glance .checks { margin-bottom: 0; }
.glance-h { margin-top: 24px; font-size: .9rem; color: var(--muted); font-weight: 500; }
.glance-links { list-style: none; padding: 0; margin: 10px 0 0; }
.glance-links a { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 11px 0; border-top: 1px solid var(--line); text-decoration: none; color: var(--navy); font-weight: 500; }
.glance-links a:hover { color: var(--blue); }
.glance-links svg { width: 16px; height: 16px; flex: none; }
.facts-list { margin: 0; }
.facts-list div { padding: 14px 0; border-bottom: 1px solid var(--line); }
.facts-list div:first-child { padding-top: 0; }
.facts-list dt { font-size: .85rem; color: var(--muted); }
.facts-list dd { margin: 4px 0 0; font-weight: 500; color: var(--navy); line-height: 1.45; }
.glance .fine { margin-top: 16px; }

.inc-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 32px; }
.inc { background: var(--white); border: 1px solid var(--line); border-radius: 16px; padding: 22px; display: grid; grid-template-columns: 22px 1fr; gap: 14px; }
.inc > svg { width: 22px; height: 22px; color: var(--blue); margin-top: 1px; }
.inc h3 { font-size: 1.05rem; font-weight: 550; color: var(--navy); line-height: 1.3; }
.inc p { margin-top: 6px; color: var(--muted); font-size: .94rem; }
.section .process { margin-top: 32px; }
.panel-btns { display: flex; flex-wrap: wrap; gap: 10px; }

/* ---------- Cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-top: 32px; }
.card {
  display: flex; flex-direction: column; gap: 10px; background: var(--white); border: 1px solid var(--line); border-radius: 18px;
  padding: 24px; text-decoration: none; color: inherit; transition: border-color .2s, transform .2s, box-shadow .2s;
}
.card:hover { border-color: #9DB8DD; transform: translateY(-2px); box-shadow: 0 14px 30px -20px rgba(0,27,67,.5); }
.card h3 { margin-top: 6px; font-size: 1.15rem; font-weight: 550; color: var(--navy); line-height: 1.3; }
.card p { color: var(--muted); font-size: .95rem; flex: 1; }
.card-link { display: inline-flex; align-items: center; gap: 8px; color: var(--blue); font-weight: 500; font-size: .95rem; }
.card-link svg { width: 16px; height: 16px; transition: transform .2s; }
.card:hover .card-link svg, .sc-card:hover .card-link svg { transform: translateX(3px); }
a.sc-card { text-decoration: none; color: inherit; transition: transform .2s, box-shadow .2s; }
a.sc-card:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -20px rgba(0,27,67,.5); }
.sc-card .card-link { margin-top: 14px; }
.sc-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.sc-grid.four .sc-body h3 { font-size: 1.15rem; }

/* ---------- Industry ---------- */
.big-intro { font-size: clamp(1.2rem, 2vw, 1.5rem); line-height: 1.45; color: var(--navy); font-weight: 350; max-width: 50rem; margin-top: 18px; letter-spacing: -0.01em; }
.challenges { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; margin-top: 40px; }
.challenge { border-top: 2px solid var(--navy); padding-top: 18px; }
.challenge b { font-family: var(--mono); color: var(--blue); font-weight: 500; font-size: .95rem; }
.challenge h3 { margin-top: 8px; font-size: 1.15rem; font-weight: 550; color: var(--navy); }
.challenge p { margin-top: 6px; color: var(--muted); }
.help-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.help-col { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: clamp(22px, 3vw, 30px); }
.help-col h3 { margin: 16px 0 16px; font-size: 1.25rem; font-weight: 500; color: var(--navy); }
.goods { margin-top: 28px; }

/* ---------- Documents (guides, legal) ---------- */
.doc-grid { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: clamp(28px, 5vw, 72px); align-items: start; }
.toc { position: sticky; top: 100px; }
.toc-h { font-size: .85rem; color: var(--muted); font-weight: 500; }
.toc ol { list-style: none; margin: 12px 0 0; padding: 0; border-left: 2px solid var(--line); }
.toc a { display: block; padding: 6px 0 6px 14px; margin-left: -2px; border-left: 2px solid transparent; text-decoration: none; color: var(--muted); font-size: .92rem; line-height: 1.35; }
.toc a:hover, .toc a.active { color: var(--navy); border-left-color: var(--blue); }
.toc-cta { margin-top: 24px; padding: 18px; background: var(--paper); border-radius: 14px; font-size: .88rem; color: var(--muted); }
.toc-cta a:not(.btn) { color: var(--blue); }
.toc-cta .btn { margin-top: 12px; min-height: 42px; }
.prose { max-width: 48rem; }
.prose > section { scroll-margin-top: 100px; }
.prose > section + section { margin-top: 44px; }
.prose h2 { font-size: clamp(1.4rem, 2.2vw, 1.8rem); color: var(--navy); font-weight: 450; line-height: 1.2; }
.prose p { color: #33425A; margin-top: 12px; }
.prose ul { margin: 14px 0 0; padding-left: 20px; color: #33425A; }
.prose li { margin-top: 8px; }
.prose li::marker { color: var(--blue); }
.table-wrap { overflow-x: auto; margin-top: 16px; border: 1px solid var(--line); border-radius: 12px; }
.table-wrap table { width: 100%; border-collapse: collapse; font-size: .93rem; min-width: 520px; }
.table-wrap th { text-align: left; background: var(--paper); color: var(--navy); font-weight: 550; padding: 12px 14px; }
.table-wrap td { padding: 12px 14px; border-top: 1px solid var(--line); vertical-align: top; color: #33425A; }
.table-wrap tbody tr:first-child td { border-top: 0; }
.table-wrap thead + tbody tr:first-child td { border-top: 1px solid var(--line); }
.table-wrap td:first-child { font-weight: 500; color: var(--navy); }
.note { display: grid; grid-template-columns: 22px 1fr; gap: 12px; margin-top: 18px; padding: 16px 18px; background: #EAF2FC; border-radius: 12px; }
.note svg { width: 20px; height: 20px; color: var(--blue); margin-top: 3px; }
.prose .note p { margin: 0; }
.az { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 36px; }
.az a { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 8px; text-decoration: none; color: var(--navy); font-weight: 500; }
.az a:hover { border-color: var(--blue); color: var(--blue); }
.prose.glossary { max-width: 54rem; }
.glossary section { scroll-margin-top: 100px; }
.glossary h2 { font-size: 2rem; color: var(--blue); font-weight: 300; }
.glossary dl { margin: 0; }
.glossary dt { font-weight: 600; color: var(--navy); margin-top: 18px; }
.glossary dd { margin: 6px 0 0; color: #33425A; }
.faq-page { max-width: 52rem; }
.faq-group + .faq-group { margin-top: 52px; }
.faq-group h2 { font-size: clamp(1.4rem, 2.2vw, 1.8rem); color: var(--navy); margin-bottom: 14px; }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 560px); gap: clamp(32px, 6vw, 80px); align-items: start; }
.cinfo { display: grid; grid-template-columns: 44px 1fr; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.cinfo:first-child { padding-top: 0; }
.cinfo h3 { font-size: .9rem; color: var(--muted); font-weight: 500; }
.cinfo p { margin-top: 4px; font-size: 1.1rem; color: var(--navy); font-weight: 500; }
.cinfo a { color: var(--blue); text-decoration: none; }
.cinfo small { display: block; margin-top: 4px; color: var(--muted); font-size: .88rem; }
.help-h { margin-top: 40px; font-size: 1.5rem; color: var(--navy); }
.help-item { margin-top: 18px; }
.help-item h3 { font-size: 1.05rem; font-weight: 550; color: var(--navy); }
.help-item p { margin-top: 4px; color: var(--muted); }
.form-card.bordered { border: 1px solid var(--line); box-shadow: var(--shadow); }
.consent a { color: var(--blue); }

/* ---------- Footer v3 ---------- */
.foot-top { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 3.4fr); gap: 48px; }
.foot-brand img { height: 40px; width: auto; }
.foot-brand p { margin-top: 14px; font-size: .9rem; max-width: 20rem; }
.foot-brand a, .foot-cols a, .foot-legal a { text-decoration: none; }
.foot-brand a:hover, .foot-cols a:hover, .foot-legal a:hover { color: var(--white); }
.foot-cols { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 28px; }
.foot-cols h4 { font-size: .9rem; font-weight: 500; color: var(--white); letter-spacing: 0; }
.foot-cols ul { list-style: none; margin: 12px 0 0; padding: 0; display: grid; gap: 8px; font-size: .87rem; line-height: 1.35; }
.foot-legal { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-top: 44px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: .86rem; }
.site-footer .foot-bottom { margin-top: 16px; padding-top: 0; border-top: 0; }
.talk.foot-only { padding-top: 0; }
.talk.foot-only .site-footer { margin-top: 0; border-top: 0; }

/* ---------- Responsive v3 ---------- */
@media (max-width: 1200px) {
  .foot-top { grid-template-columns: 1fr; }
  .foot-cols { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 1080px) {
  /* mobile navigation panel */
  .main-nav { position: fixed; inset: 0 0 auto 0; top: 0; max-height: 100vh; overflow-y: auto; background: var(--white); padding: 136px var(--gutter) 28px; transform: translateY(-105%); transition: transform .3s; box-shadow: var(--shadow); z-index: -1; }
  .main-nav.open { transform: none; }
  .site-header.is-stuck .main-nav { padding-top: 96px; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-list > li { border-bottom: 1px solid var(--line); }
  .nav-btn { width: 100%; justify-content: space-between; color: var(--navy) !important; font-size: 1.1rem; padding: 16px 4px; border-radius: 0; }
  .nav-btn[data-current] { box-shadow: none; }
  .mega { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; display: none; transition: none; }
  .has-mega.open .mega { display: block; }
  .site-header .mega-inner, .site-header .mega-inner.single { grid-template-columns: 1fr; padding: 0 0 14px; }
  .main-nav .mega ul, .main-nav .mega-inner.single ul { grid-template-columns: 1fr; }
  .mega small { display: none; }
  .mega-h { margin-left: 4px; }
  .main-nav .mega a { padding: 8px 4px; align-items: center; }
  .main-nav .nav-cta { display: block; margin-top: 18px; border: 0; }
  .main-nav .nav-cta a { display: block; padding: 14px; color: var(--white) !important; background: var(--blue); text-align: center; border-radius: var(--r-ctl); font-weight: 500; }
  .menu-toggle { display: grid; }
  .hdr-cta .btn { display: none; }
  .split-hero-grid, .overview-grid, .doc-grid, .contact-grid { grid-template-columns: 1fr; }
  .glance, .toc { position: static; }
  .toc ol { columns: 2; }
  .inc-grid, .card-grid, .sc-grid.four { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1081px) { .nav-cta { display: none; } }
@media (max-width: 900px) {
  .challenges, .help-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .inc-grid, .card-grid, .sc-grid.four { grid-template-columns: 1fr; }
  .foot-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .toc ol { columns: 1; }
  .split-hero figure { aspect-ratio: 16 / 10; }
}

/* Hero: faint network of nodes (echoes the dotted globe in the logo) */
.hero-net { position: absolute; inset: 0; z-index: 0; pointer-events: none; background: url("../img/hero-net.svg") center / cover no-repeat; opacity: .9; }
.hero > .wrap { position: relative; z-index: 1; }
.avatar svg { width: 22px; height: 22px; }
.line-card:nth-child(1) img { object-position: 50% 45%; }
.line-card:nth-child(2) img { object-position: 50% 25%; }
