:root {
  --toknav-brand-primary: #1e23ac;
  --toknav-brand-primary-dark: #121b53;
  --toknav-brand-ink: #12203a;
  --brand-surface: #ffffff;
  --surface-subtle: #f4f6fa;
  --surface-tint: #eef0fb;
  --text-primary: #132238;
  --text-secondary: #59687a;
  --text-muted: #778497;
  --border-default: #dce3ec;
  --border-strong: #bdc8d8;
  --status-success: #13795b;
  --status-warning: #9a6700;
  --status-error: #b42318;
  --container-wide: 1280px;
  --container-content: 1160px;
  --radius-small: 6px;
  --radius-medium: 10px;
  --radius-large: 14px;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 96px;
  --space-8: 120px;
  --shadow-small: 0 8px 24px rgba(18, 32, 58, .08);
  --font-sans: Inter, Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; }
body { overflow-x: clip; margin: 0; color: var(--text-primary); background: var(--brand-surface); font: 16px/1.65 var(--font-sans); }
body.menu-open, body.sheet-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.skip-link { position: fixed; z-index: 100; top: -100px; left: 16px; padding: 10px 16px; color: #fff; background: var(--toknav-brand-primary); }
.skip-link:focus { top: 16px; }
.container { width: min(calc(100% - 80px), var(--container-wide)); margin: 0 auto; }
.content-container { width: min(calc(100% - 80px), var(--container-content)); margin: 0 auto; }
.eyebrow { display: inline-flex; gap: 8px; align-items: center; margin: 0 0 14px; color: var(--toknav-brand-primary); font-size: 12px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.eyebrow::before { width: 24px; height: 1px; content: ""; background: currentColor; }
.display { margin: 0; letter-spacing: -.045em; line-height: 1.08; font-size: clamp(40px, 4.1vw, 58px); }
h1, h2, h3, p { margin-top: 0; }
h2 { margin-bottom: 18px; font-size: clamp(30px, 3vw, 43px); line-height: 1.14; letter-spacing: -.035em; }
h3 { margin-bottom: 8px; font-size: 20px; line-height: 1.25; letter-spacing: -.025em; }
.lede { max-width: 660px; margin: 20px 0 0; color: var(--text-secondary); font-size: 18px; }
.section { padding: var(--space-8) 0; }
.section--subtle { background: var(--surface-subtle); }
.section--tint { background: var(--surface-tint); }
.section--dark { color: #fff; background: var(--toknav-brand-primary-dark); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 32px; margin-bottom: 44px; }
.section-head p { max-width: 550px; margin: 0; color: var(--text-secondary); }
.section--dark .eyebrow, .section--dark .section-head p, .section--dark .lede { color: #dce4ff; }
.section--dark .eyebrow::before { background: #aab6ff; }
.text-link { display: inline-flex; gap: 8px; align-items: center; color: var(--toknav-brand-primary); font-weight: 750; }
.text-link::after { content: "→"; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(4px); }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: 10px; padding: 11px 18px; border: 1px solid transparent; border-radius: var(--radius-small); color: #fff; background: var(--toknav-brand-primary); cursor: pointer; font-size: 15px; font-weight: 800; line-height: 1.2; transition: background .2s ease, border-color .2s ease, transform .2s ease; }
.button:hover { background: #151990; transform: translateY(-1px); }
.button:focus-visible, .nav-trigger:focus-visible, .icon-button:focus-visible, .filter-button:focus-visible { outline: 3px solid rgba(30, 35, 172, .28); outline-offset: 3px; }
.button--secondary { color: var(--toknav-brand-primary); border-color: var(--toknav-brand-primary); background: #fff; }
.button--secondary:hover { color: #fff; background: var(--toknav-brand-primary); }
.button--quiet { min-height: 40px; padding: 8px 11px; color: var(--toknav-brand-primary); background: transparent; }
.button--quiet:hover { color: var(--toknav-brand-primary); background: var(--surface-tint); }
.button--dark { color: var(--toknav-brand-primary-dark); background: #fff; }
.button--dark:hover { color: var(--toknav-brand-primary-dark); background: #edf0ff; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* Global shell */
.site-header { position: sticky; z-index: 30; top: 0; border-bottom: 1px solid var(--border-default); background: rgba(255,255,255,.98); }
.header-inner { display: flex; min-height: 76px; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; padding: 6px 3px; }
.brand img { width: 158px; height: auto; }
.desktop-nav { display: flex; height: 76px; align-items: center; gap: 4px; margin-right: auto; }
.nav-trigger { display: inline-flex; height: 76px; align-items: center; gap: 7px; padding: 0 12px; border: 0; color: var(--text-primary); background: transparent; cursor: pointer; font-size: 14px; font-weight: 750; }
.nav-trigger svg { width: 14px; transition: transform .2s ease; }
.nav-trigger[aria-expanded="true"] { color: var(--toknav-brand-primary); }
.nav-trigger[aria-expanded="true"] svg { transform: rotate(180deg); }
.header-actions { display: flex; align-items: center; gap: 4px; }
.header-actions .button { min-height: 42px; padding-inline: 14px; white-space: nowrap; }
.header-actions .button--secondary { border-color: transparent; }
.icon-button { display: inline-flex; width: 38px; height: 42px; align-items: center; justify-content: center; border: 0; color: var(--text-primary); background: transparent; cursor: pointer; }
.icon-button svg { width: 20px; height: 20px; }
.language-button { display: inline-flex; min-height: 38px; align-items: center; gap: 6px; padding: 7px 9px; border: 1px solid var(--border-default); border-radius: var(--radius-small); color: var(--text-primary); background: #fff; cursor: pointer; font-size: 13px; font-weight: 750; }
.language-button svg { width: 15px; }
.mega-layer { position: absolute; z-index: 31; top: 76px; right: 0; left: 0; display: none; border-bottom: 1px solid var(--border-default); background: #fff; box-shadow: var(--shadow-small); }
.mega-layer.is-open { display: block; }
.mega-inner { display: grid; grid-template-columns: repeat(3, 1fr) 300px; min-height: 300px; }
.mega-column { padding: 28px; border-right: 1px solid var(--border-default); }
.mega-column:last-of-type { border: 0; }
.mega-kicker { display: block; margin-bottom: 16px; color: var(--toknav-brand-primary); font-size: 11px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.mega-item { display: block; padding: 11px 0; border-bottom: 1px solid #edf0f4; }
.mega-item:last-child { border-bottom: 0; }
.mega-item strong { display: block; color: var(--text-primary); font-size: 15px; }
.mega-item span { display: block; margin-top: 2px; color: var(--text-secondary); font-size: 13px; line-height: 1.45; }
.mega-callout { display: flex; flex-direction: column; justify-content: space-between; padding: 30px; color: #fff; background: var(--toknav-brand-primary-dark); }
.mega-callout p { margin: 8px 0 24px; color: #dce4ff; font-size: 14px; }
.mega-callout .button { width: 100%; }
.mobile-header, .mobile-drawer { display: none; }

/* Revision 02 header and mega menu: original-site content, figure-5 visual direction. */
.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; }
.header-inner { min-height: 84px; gap: 16px; }
.desktop-nav { height: 84px; gap: 0; }
.nav-trigger { position: relative; height: 84px; padding: 0 13px; font-size: 14px; font-weight: 800; }
.nav-trigger[aria-expanded="true"]::after { position: absolute; right: 13px; bottom: 18px; left: 13px; height: 2px; content: ""; background: var(--toknav-brand-primary); }
.header-actions { gap: 10px; }
.header-social { display: flex; align-items: center; gap: 4px; }
.header-social a, .footer-social a { display: inline-flex; width: 24px; height: 24px; align-items: center; justify-content: center; border: 1px solid #d8e1ed; border-radius: 50%; color: var(--toknav-brand-primary); background: #fff; transition: border-color .2s ease, background .2s ease, color .2s ease; }
.header-social a:hover, .footer-social a:hover { border-color: var(--toknav-brand-primary); color: #fff; background: var(--toknav-brand-primary); }
.header-social svg, .footer-social svg { width: 13px; height: 13px; }
.header-search { display: flex; width: 136px; height: 36px; align-items: center; border: 1px solid #cbd7e5; border-radius: 4px; background: #fff; }
.header-search input { width: 100%; min-width: 0; height: 100%; padding: 0 8px; border: 0; outline: 0; color: var(--text-primary); font-size: 12px; }
.header-search button { display: grid; width: 34px; height: 34px; flex: 0 0 auto; place-items: center; border: 0; color: var(--toknav-brand-primary-dark); background: transparent; cursor: pointer; }
.header-search svg { width: 17px; height: 17px; }
.header-actions .button { min-height: 44px; padding-inline: 15px; font-size: 14px; }
.header-actions .button--secondary { color: var(--toknav-brand-primary); background: #fff; }
.mega-layer { top: 84px; box-shadow: 0 18px 34px rgba(18, 32, 58, .12); }
.mega-inner { grid-template-columns: repeat(3, minmax(0, 1fr)) 300px; min-height: 432px; }
.mega-column { padding: 38px 40px 28px; }
.mega-item { position: relative; min-height: 94px; padding: 16px 30px 14px 0; }
.mega-item strong { font-size: 16px; font-weight: 800; }
.mega-item span { max-width: 265px; font-size: 13px; }
.mega-item svg { position: absolute; top: 50%; right: 0; width: 18px; color: var(--toknav-brand-primary); transform: translateY(-50%); }
.mega-callout { padding: 38px 34px 34px; background: #142050; }
.mega-callout .mega-kicker { color: #bdcbff; }
.mega-callout h3 { margin-bottom: 8px; color: #fff; font-size: 26px; line-height: 1.1; }
.mega-callout p { color: #d7e1ff; font-size: 15px; line-height: 1.55; }
.mega-callout-actions { display: grid; gap: 13px; }
.mega-callout .button { width: 100%; }
.mega-text-link { display: inline-flex; gap: 7px; align-items: center; color: #fff; font-size: 14px; font-weight: 800; }
.mega-text-link svg { width: 16px; }

.site-footer { color: var(--toknav-brand-primary-dark); border-top: 1px solid #d9e2ef; background: #fff; }
.footer-main { display: grid; grid-template-columns: 1.25fr repeat(3, 1fr); gap: 42px; padding: 52px 0 38px; }
.footer-brand img { width: 176px; padding: 0; background: transparent; }
.footer-brand p { max-width: 330px; margin: 20px 0 0; color: #51637f; font-size: 14px; }
.footer-heading { margin: 0 0 14px; color: var(--toknav-brand-primary-dark); font-size: 13px; font-weight: 850; letter-spacing: .075em; text-transform: uppercase; }
.footer-list { display: grid; gap: 8px; padding: 0; margin: 0; list-style: none; }
.footer-list a { display: inline-flex; gap: 7px; align-items: center; color: #51637f; font-size: 14px; }
.footer-list svg { width: 15px; height: 15px; }
.footer-list a:hover { color: var(--toknav-brand-primary); }
.footer-social { display: flex; gap: 8px; margin-top: 18px; }
.footer-social a { border-color: #bdcde1; color: var(--toknav-brand-primary-dark); background: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 0; border-top: 1px solid #d9e2ef; color: #64748c; font-size: 12px; }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 16px; }
.floating-whatsapp { position: fixed; z-index: 15; right: 26px; bottom: 26px; display: inline-flex; width: 50px; height: 50px; align-items: center; justify-content: center; border: 1px solid #8fddb9; border-radius: 50%; color: #0c6e43; background: #fff; box-shadow: var(--shadow-small); cursor: pointer; }
.floating-whatsapp svg { width: 23px; }
.preview-toast { position: fixed; z-index: 80; right: 26px; bottom: 88px; width: min(360px, calc(100vw - 40px)); padding: 16px 18px; border: 1px solid #bde7d0; border-radius: var(--radius-medium); color: #155f3d; background: #f2fff7; box-shadow: var(--shadow-small); transform: translateY(20px); opacity: 0; pointer-events: none; transition: .25s ease; }
.preview-toast.is-visible { transform: translateY(0); opacity: 1; }
.preview-toast strong { display: block; }
.preview-overlay { position: fixed; z-index: 50; inset: 0; display: none; background: rgba(12, 22, 44, .45); }
.preview-overlay.is-open { display: block; }
.search-dialog { position: fixed; z-index: 60; top: 100px; left: 50%; display: none; width: min(620px, calc(100% - 40px)); padding: 24px; border-radius: var(--radius-medium); background: #fff; box-shadow: 0 24px 80px rgba(13,26,52,.24); transform: translateX(-50%); }
.search-dialog.is-open { display: block; }
.search-dialog h2 { margin-bottom: 14px; font-size: 24px; }
.search-field { display: flex; gap: 10px; align-items: center; padding: 0 14px; border: 1px solid var(--border-strong); border-radius: var(--radius-small); }
.search-field input { width: 100%; height: 48px; border: 0; outline: 0; }
.search-hints { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.search-hints button { padding: 6px 9px; border: 1px solid var(--border-default); border-radius: 4px; color: var(--text-secondary); background: #fff; cursor: pointer; font-size: 13px; }
.language-sheet { position: fixed; z-index: 70; right: 0; bottom: 0; left: 0; display: none; padding: 24px max(20px, calc((100% - 580px) / 2)); border-radius: 18px 18px 0 0; background: #fff; box-shadow: 0 -12px 48px rgba(12, 22, 44, .18); }
.language-sheet.is-open { display: block; }
.language-sheet h2 { margin-bottom: 8px; font-size: 24px; }
.language-sheet p { margin-bottom: 18px; color: var(--text-secondary); }
.language-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.language-option { display: flex; min-height: 48px; align-items: center; justify-content: space-between; padding: 10px 12px; border: 1px solid var(--border-default); border-radius: var(--radius-small); background: #fff; cursor: pointer; text-align: left; }
.language-option.is-current { border-color: var(--toknav-brand-primary); color: var(--toknav-brand-primary); }

/* Shared cards and utilities */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid--6 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card { border: 1px solid var(--border-default); border-radius: var(--radius-medium); background: #fff; overflow: hidden; }
.card-body { padding: 24px; }
.image-card { display: flex; min-height: 100%; flex-direction: column; }
.image-card .card-image { aspect-ratio: 16 / 9; overflow: hidden; background: #e7ecf4; }
.image-card .card-image img { width: 100%; height: 100%; object-fit: cover; }
.image-card .card-body { display: flex; flex: 1; flex-direction: column; }
.image-card p { margin-bottom: 18px; color: var(--text-secondary); font-size: 14px; }
.image-card .text-link { margin-top: auto; }
.card-meta { margin-bottom: 8px; color: var(--toknav-brand-primary); font-size: 11px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.product-card { display: flex; min-height: 100%; flex-direction: column; border: 1px solid var(--border-default); border-radius: var(--radius-medium); background: #fff; overflow: hidden; }
.product-image { display: flex; min-height: 230px; align-items: center; justify-content: center; padding: 22px; background: #f7f8fb; }
.product-image img { width: min(220px, 80%); height: 210px; object-fit: contain; mix-blend-mode: multiply; }
.product-card .card-body { display: flex; flex: 1; flex-direction: column; }
.product-card p { color: var(--text-secondary); font-size: 14px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 7px; margin: 16px 0 20px; }
.tag { display: inline-flex; padding: 5px 8px; border: 1px solid #d8dcf6; border-radius: 4px; color: #343c88; background: #f6f6ff; font-size: 12px; font-weight: 700; line-height: 1.25; }
.product-card .card-actions { display: flex; gap: 12px; align-items: center; margin-top: auto; }
.product-card .card-actions .button { min-height: 42px; padding: 9px 13px; }
.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin: 36px 0 0; border: 1px solid var(--border-default); border-radius: var(--radius-medium); background: #fff; overflow: hidden; }
.metric { min-height: 108px; padding: 20px; border-right: 1px solid var(--border-default); }
.metric:last-child { border-right: 0; }
.metric strong { display: block; color: var(--toknav-brand-primary); font-size: 20px; line-height: 1.2; }
.metric span { display: block; margin-top: 6px; color: var(--text-secondary); font-size: 13px; line-height: 1.4; }
.route-card { display: flex; min-height: 220px; flex-direction: column; justify-content: space-between; padding: 26px; border: 1px solid var(--border-default); border-radius: var(--radius-medium); background: #fff; }
.route-card p { color: var(--text-secondary); }
.route-index { display: block; margin-bottom: 28px; color: var(--toknav-brand-primary); font-size: 12px; font-weight: 850; letter-spacing: .08em; }
.placeholder { display: flex; min-height: 180px; align-items: center; justify-content: center; padding: 28px; border: 1px dashed #93a2b6; border-radius: var(--radius-medium); color: var(--text-secondary); background: #f7f8fa; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-align: center; }

/* Homepage */
.home-hero { position: relative; overflow: hidden; padding: 92px 0 78px; background: #f5f7fb; }
.home-hero::after { position: absolute; top: 0; right: 0; bottom: 0; width: 46%; content: ""; background: #e9edf7; }
.home-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: 56px; }
.home-hero-copy { padding: 16px 0; }
.trust-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 13px 24px; max-width: 610px; margin-top: 38px; color: var(--text-secondary); font-size: 13px; font-weight: 700; }
.trust-row span { display: flex; gap: 9px; align-items: center; }
.trust-row svg { width: 16px; color: var(--toknav-brand-primary); }
.hero-visual { position: relative; display: grid; min-height: 430px; place-items: center; }
.hero-visual::before { position: absolute; inset: 5% 0 4% 10%; content: ""; background: url("images/gnss-field.webp") center / cover; opacity: .14; filter: grayscale(1); }
.hero-product { position: relative; z-index: 1; width: min(460px, 90%); max-height: 410px; object-fit: contain; }
.hero-tag { position: absolute; z-index: 2; right: 0; bottom: 16px; max-width: 230px; padding: 15px 18px; border-left: 3px solid var(--toknav-brand-primary); color: var(--text-primary); background: #fff; box-shadow: var(--shadow-small); font-size: 13px; font-weight: 750; }
.hero-tag span { display: block; margin-top: 4px; color: var(--text-secondary); font-size: 12px; font-weight: 500; }
.application-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.application-card { position: relative; min-height: 250px; overflow: hidden; border-radius: var(--radius-medium); color: #fff; background: #18274b; }
.application-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .78; }
.application-card::after { position: absolute; inset: 0; content: ""; background: rgba(10,20,45,.46); }
.application-card .application-copy { position: absolute; z-index: 1; right: 22px; bottom: 20px; left: 22px; }
.application-card h3 { margin: 0; font-size: 21px; }
.application-card span { color: #dce4ff; font-size: 13px; }
.comparison-band { display: grid; grid-template-columns: .9fr 2.1fr; gap: 38px; align-items: start; }
.comparison-band p { color: var(--text-secondary); }
.comparison-cells { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--border-strong); }
.comparison-cell { min-height: 170px; padding: 22px 18px; border-right: 1px solid var(--border-strong); border-bottom: 1px solid var(--border-strong); }
.comparison-cell:last-child { border-right: 0; }
.comparison-cell strong { display: block; margin-bottom: 8px; color: var(--toknav-brand-primary); font-size: 19px; }
.comparison-cell span { color: var(--text-secondary); font-size: 13px; line-height: 1.5; }
.proof-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 24px; }
.proof-image { min-height: 370px; border-radius: var(--radius-medium); background: #e9edf5 url("images/company-profile-poster.webp") center / cover; }
.proof-points { display: grid; gap: 12px; }
.proof-point { padding: 22px; border-bottom: 1px solid var(--border-default); }
.proof-point:last-child { border-bottom: 0; }
.proof-point span { color: var(--toknav-brand-primary); font-size: 12px; font-weight: 850; }
.proof-point p { margin: 8px 0 0; color: var(--text-secondary); font-size: 14px; }
.project-card .project-details { display: grid; grid-template-columns: 1fr 1fr; gap: 7px 14px; margin: 16px 0 18px; padding-top: 15px; border-top: 1px solid var(--border-default); font-size: 12px; }
.project-card .project-details b { display: block; color: var(--text-muted); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; }
.project-card .project-details span { color: var(--text-primary); }
.section.section--dark:has(.final-cta) { padding: 42px 0; }
.final-cta { display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 0; }
.final-cta h2 { margin: 0; max-width: 620px; }

/* Homepage revision 02: full-width current banner carousel and true 16:9 video. */
.home-carousel-hero { position: relative; min-height: 560px; height: min(46.875vw, 900px); overflow: hidden; background: #10204c; }
.home-carousel-track, .home-carousel-slide { position: absolute; inset: 0; }
.home-carousel-slide { visibility: hidden; opacity: 0; transition: opacity .45s ease, visibility .45s ease; }
.home-carousel-slide.is-active { visibility: visible; opacity: 1; }
.home-carousel-slide picture { position: absolute; inset: 0; display: block; }
.home-carousel-slide img { display: block; width: 100%; height: 100%; }
.home-carousel-slide img { object-fit: cover; object-position: center; }
.hero-slide-link { position: absolute; z-index: 1; inset: 0; }
.hero-carousel-controls { position: absolute; z-index: 3; right: 0; bottom: 23px; left: 0; display: flex; align-items: center; gap: 12px; }
.hero-arrow { display: inline-grid; width: 36px; height: 36px; place-items: center; border: 1px solid rgba(255,255,255,.7); border-radius: 50%; color: #fff; background: rgba(14,31,70,.58); cursor: pointer; }
.hero-arrow:hover { background: var(--toknav-brand-primary); }
.hero-arrow svg { width: 18px; height: 18px; }
.hero-dots { display: flex; gap: 8px; }
.hero-dots button { width: 30px; height: 4px; padding: 0; border: 0; border-radius: 999px; background: rgba(255,255,255,.55); cursor: pointer; }
.hero-dots button.is-active { background: #fff; }
.home-banner-context { min-height: 98px; background: #fff; }
.hero-context { display: none; min-height: 98px; align-items: center; justify-content: space-between; gap: 28px; padding: 20px 0; }
.hero-context.is-active { display: flex; }
.hero-context span { display: block; margin-bottom: 4px; color: var(--toknav-brand-primary); font-size: 11px; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
.hero-context strong { display: block; color: var(--toknav-brand-primary-dark); font-size: 19px; line-height: 1.25; }
.home-categories-section { padding-top: 82px; }
.category-card { display: flex; min-height: 100%; flex-direction: column; }
.category-image { display: flex; min-height: 276px; align-items: center; justify-content: center; padding: 22px; border-bottom: 1px solid var(--border-default); background: linear-gradient(135deg, #edf1f7, #fafbfd); }
.category-image img { width: 100%; height: 254px; object-fit: contain; mix-blend-mode: multiply; }
.category-card .card-body { display: flex; flex: 1; flex-direction: column; }
.category-card p { margin-bottom: 18px; color: var(--text-secondary); font-size: 14px; }
.category-card .text-link { margin-top: auto; }
.category-card .text-link::after { display: none; }
.category-card .text-link svg { width: 18px; }
.proof-grid--video { align-items: stretch; }
.company-video { min-height: 0; margin: 0; overflow: hidden; border: 1px solid #cfe0f1; border-radius: var(--radius-medium); background: #fff; box-shadow: 0 18px 42px rgba(20,55,98,.16); }
.company-video-frame { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: #fff; }
.company-video-frame video { position: absolute; inset: 0; display: block; width: 100%; height: 100%; object-fit: cover; background: #fff; }
.company-video-poster { position: absolute; inset: 0; display: grid; width: 100%; height: 100%; padding: 0; place-items: center; border: 0; background: #fff; cursor: pointer; }
.company-video-poster img { width: 100%; height: 100%; object-fit: contain; object-position: center; background: #fff; }
.company-video-poster > span[aria-hidden="true"] { position: absolute; display: grid; width: 68px; height: 68px; place-items: center; border: 1px solid rgba(255,255,255,.95); border-radius: 50%; color: #fff; background: rgba(19,50,120,.76); box-shadow: 0 8px 24px rgba(12,30,74,.26); font-size: 23px; line-height: 1; transition: transform .2s ease, background .2s ease; }
.company-video-poster:hover > span[aria-hidden="true"], .company-video-poster:focus-visible > span[aria-hidden="true"] { background: var(--toknav-brand-primary); transform: scale(1.07); }
.company-video-poster:focus-visible { outline: 3px solid #80baff; outline-offset: -3px; }
.company-video-frame.is-playing .company-video-poster { display: none; }
.company-video-frame.is-playing::before, .company-video-frame.is-playing::after { position: absolute; z-index: 1; right: 0; left: 0; display: block; content: ""; background: #fff; pointer-events: none; }
.company-video-frame.is-playing::before { top: 0; height: 8%; }
.company-video-frame.is-playing::after { bottom: 0; height: 16%; }

/* Category and product */
.crumbs { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 20px; color: var(--text-secondary); font-size: 13px; }
.crumbs span { color: var(--text-muted); }
.page-hero { padding: 72px 0; background: var(--surface-subtle); }
.page-hero-grid { display: grid; grid-template-columns: 1fr .8fr; gap: 48px; align-items: center; }
.page-hero-image { display: flex; min-height: 285px; align-items: center; justify-content: center; border: 1px solid #e0e5ee; border-radius: var(--radius-medium); background: #fff; }
.page-hero-image img { width: 290px; max-height: 275px; object-fit: contain; }
.selection-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.selection-card { padding: 26px; border-top: 3px solid var(--toknav-brand-primary); background: #fff; }
.selection-card p { color: var(--text-secondary); font-size: 14px; }
.selection-card dt { margin-top: 18px; color: var(--text-muted); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.selection-card dd { margin: 3px 0 0; font-size: 14px; font-weight: 700; }
.filter-bar { display: flex; flex-wrap: wrap; gap: 9px; align-items: center; padding: 14px 0 24px; border-bottom: 1px solid var(--border-default); }
.filter-label { margin-right: 8px; color: var(--text-secondary); font-size: 13px; font-weight: 800; }
.filter-button { min-height: 34px; padding: 5px 9px; border: 1px solid var(--border-default); border-radius: 4px; color: var(--text-secondary); background: #fff; cursor: pointer; font-size: 12px; font-weight: 750; }
.filter-button.is-active { border-color: var(--toknav-brand-primary); color: var(--toknav-brand-primary); background: #f4f5ff; }
.series-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.series-table th, .series-table td { padding: 15px 16px; border: 1px solid var(--border-default); text-align: left; vertical-align: top; }
.series-table th { color: var(--text-secondary); background: var(--surface-subtle); font-size: 12px; letter-spacing: .04em; text-transform: uppercase; }
.series-table td:first-child { color: var(--toknav-brand-primary); font-weight: 800; }
.product-hero { padding: 58px 0 42px; }
.product-hero-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: center; }
.product-facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; margin: 28px 0; border-top: 1px solid var(--border-default); }
.product-fact { padding: 14px 12px 14px 0; border-bottom: 1px solid var(--border-default); }
.product-fact:nth-child(even) { padding-left: 18px; border-left: 1px solid var(--border-default); }
.product-fact strong { display: block; color: var(--toknav-brand-primary); font-size: 18px; line-height: 1.2; font-variant-numeric: tabular-nums; }
.product-fact span { display: block; margin-top: 4px; color: var(--text-secondary); font-size: 12px; line-height: 1.45; }
.product-gallery { position: relative; min-height: 490px; border: 1px solid var(--border-default); border-radius: var(--radius-medium); background: #f6f7fa; overflow: hidden; }
.product-gallery .main-image { width: 100%; height: 440px; object-fit: contain; mix-blend-mode: multiply; }
.thumbs { display: flex; gap: 10px; padding: 12px 18px 18px; }
.thumb { width: 58px; height: 46px; padding: 4px; border: 1px solid var(--toknav-brand-primary); border-radius: 4px; background: #fff; }
.thumb img { width: 100%; height: 100%; object-fit: contain; }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--border-default); border-bottom: 1px solid var(--border-default); }
.benefit { padding: 25px 24px; border-right: 1px solid var(--border-default); }
.benefit:last-child { border-right: 0; }
.benefit span { color: var(--toknav-brand-primary); font-size: 11px; font-weight: 850; letter-spacing: .08em; }
.benefit p { margin: 10px 0 0; color: var(--text-secondary); font-size: 14px; }
.workflow { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 36px; }
.workflow-step { position: relative; min-height: 150px; padding: 23px 18px; border-top: 1px solid var(--border-strong); }
.workflow-step:not(:last-child)::after { position: absolute; top: -5px; right: -6px; width: 10px; height: 10px; border: 1px solid var(--toknav-brand-primary); border-radius: 50%; content: ""; background: #fff; }
.workflow-step b { display: block; color: var(--toknav-brand-primary); font-size: 12px; }
.workflow-step strong { display: block; margin: 9px 0 7px; font-size: 16px; }
.workflow-step p { color: var(--text-secondary); font-size: 13px; line-height: 1.5; }
.spec-layout { display: grid; grid-template-columns: 250px 1fr; gap: 48px; }
.spec-nav { display: grid; align-content: start; gap: 0; border-top: 1px solid var(--border-default); }
.spec-nav a { padding: 12px 0; border-bottom: 1px solid var(--border-default); color: var(--text-secondary); font-size: 14px; }
.spec-nav a:first-child { color: var(--toknav-brand-primary); font-weight: 800; }
.spec-group { margin-bottom: 36px; }
.spec-group h3 { padding-bottom: 12px; border-bottom: 2px solid var(--toknav-brand-primary); }
.spec-list { margin: 0; }
.spec-list div { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; padding: 12px 0; border-bottom: 1px solid var(--border-default); }
.spec-list dt { color: var(--text-secondary); font-size: 14px; }
.spec-list dd { margin: 0; font-size: 14px; font-variant-numeric: tabular-nums; }
.download-list { display: grid; gap: 12px; }
.download-card { display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 18px 20px; border: 1px solid var(--border-default); border-radius: var(--radius-small); background: #fff; }
.download-card b { display: block; }
.download-card span { color: var(--text-secondary); font-size: 13px; }

/* solutions, about, contact */
.solution-hero { min-height: 470px; padding: 82px 0; color: #fff; background: #132143 url("images/tboat-water-survey.webp") center 45% / cover; position: relative; }
.solution-hero::before { position: absolute; inset: 0; content: ""; background: rgba(13, 27, 57, .72); }
.solution-hero .container { position: relative; }
.solution-hero .lede { color: #dce3f8; }
.solution-hero .crumbs { color: #dfe6f8; }
.solution-hero .crumbs span { color: #b9c7e5; }
.solution-hero .eyebrow { color: #bac7ff; }
.challenge-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.challenge { padding: 26px; border: 1px solid var(--border-default); border-radius: var(--radius-medium); background: #fff; }
.challenge b { display: block; margin-bottom: 12px; color: var(--toknav-brand-primary); font-size: 12px; letter-spacing: .08em; }
.challenge p { margin: 0; color: var(--text-secondary); font-size: 14px; }
.system-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 34px; }
.system-image { min-height: 360px; background: #dce4ee url("images/tboat20-main.webp") center / contain no-repeat; }
.system-list { display: grid; gap: 0; border-top: 1px solid var(--border-default); }
.system-list div { padding: 17px 0; border-bottom: 1px solid var(--border-default); }
.system-list strong { display: block; font-size: 16px; }
.system-list p { margin: 3px 0 0; color: var(--text-secondary); font-size: 14px; }
.video-preview { position: relative; display: grid; min-height: 360px; place-items: center; overflow: hidden; border-radius: var(--radius-medium); background: #12203f url("images/company-profile-poster.webp") center / cover; }
.video-preview::before { position: absolute; inset: 0; content: ""; background: rgba(11,24,54,.5); }
.video-preview button { position: relative; display: grid; width: 78px; height: 78px; place-items: center; border: 1px solid rgba(255,255,255,.8); border-radius: 50%; color: #fff; background: rgba(255,255,255,.18); cursor: pointer; font-size: 24px; }
.video-preview > span { position: relative; display: grid; width: 78px; height: 78px; place-items: center; border: 1px solid rgba(255,255,255,.8); border-radius: 50%; color: #fff; background: rgba(255,255,255,.18); font-size: 24px; }
.about-hero { padding: 82px 0; color: #fff; background: #15234a; }
.about-hero-grid { display: grid; grid-template-columns: 1fr .95fr; gap: 56px; align-items: center; }
.about-hero .lede { color: #dce4f6; }
.about-image { min-height: 340px; background: #19325f url("images/company-profile-poster.webp") center / cover; }
.company-facts { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; margin-top: 28px; border: 1px solid var(--border-default); border-radius: var(--radius-medium); overflow: hidden; }
.company-facts div { min-height: 94px; padding: 16px; border-right: 1px solid var(--border-default); border-bottom: 1px solid var(--border-default); }
.company-facts div:nth-child(even) { border-right: 0; }
.company-facts b { display: block; color: var(--text-muted); font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.company-facts span { display: block; margin-top: 7px; font-size: 14px; font-weight: 700; line-height: 1.45; }
.about-process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.about-process .process-step { padding: 25px 18px; border-top: 1px solid var(--border-strong); border-right: 1px solid var(--border-default); }
.about-process .process-step:last-child { border-right: 0; }
.process-step strong { display: block; margin: 7px 0; }
.process-step p { margin: 0; color: var(--text-secondary); font-size: 13px; }
.cert-card { display: grid; grid-template-columns: 1fr 1.1fr; min-height: 240px; align-items: center; border: 1px solid var(--border-default); border-radius: var(--radius-medium); overflow: hidden; background: #fff; }
.cert-card img { width: 100%; height: 100%; min-height: 240px; object-fit: cover; object-position: 50% 30%; }
.cert-card div { padding: 26px; }
.cert-card p { color: var(--text-secondary); font-size: 14px; }
.contact-hero { padding: 74px 0; background: var(--surface-subtle); }
.contact-quick { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 36px; border: 1px solid var(--border-default); border-radius: var(--radius-medium); overflow: hidden; background: #fff; }
.contact-quick div { padding: 20px 22px; border-right: 1px solid var(--border-default); }
.contact-quick div:last-child { border-right: 0; }
.contact-quick b { display: block; color: var(--text-muted); font-size: 11px; letter-spacing: .07em; text-transform: uppercase; }
.contact-quick span { display: block; margin-top: 8px; font-size: 16px; font-weight: 750; }
.contact-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: 36px; align-items: start; }
.contact-layout > * { min-width: 0; }
.inquiry-tabs { display: flex; gap: 0; overflow-x: auto; border-bottom: 1px solid var(--border-default); }
.inquiry-tab { flex: 0 0 auto; padding: 13px 16px; border: 0; border-bottom: 2px solid transparent; color: var(--text-secondary); background: transparent; cursor: pointer; font-size: 13px; font-weight: 800; }
.inquiry-tab.is-active { border-bottom-color: var(--toknav-brand-primary); color: var(--toknav-brand-primary); }
.form-card { padding: 26px; border: 1px solid var(--border-default); border-radius: var(--radius-medium); background: #fff; }
.field-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 22px; }
.field { display: grid; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label { color: var(--text-primary); font-size: 13px; font-weight: 750; }
.field input, .field select, .field textarea { width: 100%; min-height: 48px; padding: 10px 12px; border: 1px solid var(--border-strong); border-radius: var(--radius-small); color: var(--text-primary); background: #fff; outline: none; }
.field textarea { min-height: 112px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--toknav-brand-primary); box-shadow: 0 0 0 3px rgba(30,35,172,.12); }
.map-placeholder { min-height: 280px; padding: 28px; border: 1px solid var(--border-default); border-radius: var(--radius-medium); background: #eef2f7; }
.map-placeholder span { display: inline-flex; padding: 6px 8px; color: var(--toknav-brand-primary); background: #fff; font-size: 11px; font-weight: 850; letter-spacing: .07em; }
.map-placeholder h3 { margin-top: 96px; }
.map-placeholder p { max-width: 350px; color: var(--text-secondary); font-size: 14px; }
.response-list { display: grid; gap: 0; padding: 0; margin: 0; list-style: none; border-top: 1px solid var(--border-default); }
.response-list li { padding: 15px 0; border-bottom: 1px solid var(--border-default); }
.response-list b { display: block; color: var(--toknav-brand-primary); font-size: 13px; }
.response-list span { color: var(--text-secondary); font-size: 14px; }

/* Client-facing About page revision. */
.about-hero { padding: 72px 0 78px; color: var(--text-primary); background: linear-gradient(120deg, #f7fbff 0%, #fff 55%, #eaf4ff 100%); border-bottom: 1px solid #d9e8f5; }
.about-hero-grid { display: grid; grid-template-columns: minmax(0, .84fr) minmax(520px, 1.16fr); gap: 62px; align-items: center; }
.about-hero .crumbs { margin-bottom: 24px; color: var(--text-secondary); }
.about-hero .eyebrow { color: var(--toknav-brand-primary); }
.about-hero .display { max-width: 600px; font-size: clamp(42px, 5vw, 78px); line-height: .94; }
.about-hero .lede { max-width: 590px; color: var(--text-secondary); }
.about-fact-pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0 28px; }
.about-fact-pills span { padding: 9px 12px; border: 1px solid #cfe0f1; border-radius: 7px; color: #294b71; background: rgba(255,255,255,.8); font-size: 13px; font-weight: 750; }
.about-company-video { width: 100%; border-radius: 16px; }
.about-company-profile { padding-top: 82px; padding-bottom: 82px; }
.about-company-profile__intro { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .7fr); gap: 90px; align-items: end; }
.about-company-profile__intro h2 { max-width: 690px; margin: 0; font-size: clamp(36px, 4vw, 60px); line-height: .98; }
.about-company-profile__intro > p { max-width: 460px; margin: 0 0 4px; color: var(--text-secondary); font-size: 17px; line-height: 1.65; }
.about-company-profile__facts { display: grid; grid-template-columns: .7fr 1.3fr; margin-top: 44px; border: 1px solid #d5e3f0; border-radius: 16px; overflow: hidden; background: #fff; }
.about-company-profile__facts article { display: grid; min-height: 119px; align-content: center; padding: 24px 28px; border-right: 1px solid #d5e3f0; border-bottom: 1px solid #d5e3f0; }
.about-company-profile__facts article:nth-child(even) { border-right: 0; }
.about-company-profile__facts article:nth-child(n+3) { border-bottom: 0; }
.about-company-profile__facts span { margin-bottom: 8px; color: #72869d; font-size: 11px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.about-company-profile__facts strong, .about-company-profile__facts a { color: var(--text-primary); font-size: 17px; font-weight: 800; line-height: 1.45; text-decoration: none; }
.about-company-profile__facts a { color: var(--toknav-brand-primary); }
.about-certificates { background: #f6f9fd; }
.certificate-stage { position: relative; height: 535px; overflow: hidden; margin-top: 12px; border: 1px solid #d5e3f0; border-radius: 20px; background: radial-gradient(circle at 76% 4%, #e9f6ff 0, #fff 42%), linear-gradient(135deg, #f3f9ff, #fff); }
.certificate-stage > p { position: absolute; z-index: 3; bottom: 20px; left: 30px; margin: 0; color: #607995; font-size: 13px; }
.certificate-stage > p span { margin-right: 8px; color: var(--toknav-brand-primary); font-size: 10px; font-weight: 850; letter-spacing: .12em; }
.certificate { position: absolute; display: block; width: 180px; aspect-ratio: .72; border: 1px solid #dce6f0; background: #fff; box-shadow: 0 15px 26px rgba(10,43,89,.17); object-fit: cover; object-position: top; transition: transform .2s ease, box-shadow .2s ease; }
.certificate:hover { z-index: 5; box-shadow: 0 24px 36px rgba(10,43,89,.25); }
.certificate--iso { top: 11%; left: 5%; transform: rotate(-7deg); }
.certificate--p8 { top: 25%; left: 20%; transform: rotate(5deg); }
.certificate--t10-ce { top: 7%; left: 35%; transform: rotate(-3deg); }
.certificate--t5-ce { top: 28%; left: 49%; transform: rotate(6deg); }
.certificate--t45 { top: 9%; left: 64%; transform: rotate(-6deg); }
.certificate--tag66 { top: 24%; left: 79%; transform: rotate(5deg); }
.certificate--t10-fcc { top: 53%; left: 12%; transform: rotate(3deg); }
.certificate--t20-fcc { top: 55%; left: 29%; transform: rotate(-5deg); }
.certificate--t10-gnpcv { top: 53%; left: 47%; transform: rotate(4deg); }
.certificate--t5-gnpcv { top: 53%; left: 65%; transform: rotate(-3deg); }
.certificate--kc { top: 49%; left: 80%; transform: rotate(6deg); }
.certificate--iso:hover { transform: translateY(-10px) rotate(-4deg) scale(1.03); }
.certificate--p8:hover { transform: translateY(-10px) rotate(2deg) scale(1.03); }
.certificate--t10-ce:hover { transform: translateY(-10px) rotate(-2deg) scale(1.03); }
.certificate--t5-ce:hover { transform: translateY(-10px) rotate(2deg) scale(1.03); }
.certificate--t45:hover { transform: translateY(-10px) rotate(-3deg) scale(1.03); }
.certificate--tag66:hover { transform: translateY(-10px) rotate(2deg) scale(1.03); }
.about-field-gallery { background: #f5f9fd; }
.field-gallery-grid { display: grid; gap: 3px; overflow: hidden; margin-top: 12px; border: 1px solid #d6e4f1; border-radius: 14px; background: #d6e4f1; box-shadow: 0 16px 34px rgba(10, 43, 89, .07); }
.field-gallery-row { display: flex; gap: 3px; min-width: 0; }
.field-gallery-card { position: relative; display: block; flex: var(--field-photo-ratio) 1 0; min-width: 0; aspect-ratio: var(--field-photo-ratio); padding: 0; overflow: hidden; border: 0; border-radius: 0; background: #dcebf4; cursor: zoom-in; }
.field-gallery-card::after { position: absolute; right: 10px; bottom: 10px; display: grid; width: 28px; height: 28px; place-items: center; border: 1px solid rgba(255, 255, 255, .88); border-radius: 50%; background: rgba(10, 43, 89, .76); color: #fff; content: '+'; font-size: 18px; line-height: 1; opacity: 0; transition: opacity .18s ease; }
.field-gallery-card img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease, filter .2s ease; }
.field-gallery-card:hover img, .field-gallery-card:focus-visible img { transform: scale(1.025); filter: brightness(1.04); }
.field-gallery-card:hover::after, .field-gallery-card:focus-visible::after { opacity: 1; }
.field-gallery-card:focus-visible { z-index: 1; outline: 3px solid var(--toknav-brand-primary); outline-offset: -3px; }
.field-gallery-lightbox { width: min(1000px, calc(100vw - 32px)); max-height: calc(100vh - 32px); padding: 0; overflow: hidden; border: 0; border-radius: 18px; background: #fff; box-shadow: 0 26px 70px rgba(6, 23, 57, .38); }
.field-gallery-lightbox::backdrop { background: rgba(5, 21, 49, .72); }
.field-gallery-lightbox img { display: block; width: 100%; max-height: calc(100vh - 112px); object-fit: contain; background: #edf4fb; }
.field-gallery-lightbox p { margin: 0; padding: 14px 50px 16px 18px; color: #48627e; font-size: 14px; }
.field-gallery-lightbox__close { position: absolute; z-index: 1; top: 12px; right: 12px; display: grid; width: 36px; height: 36px; place-items: center; border: 0; border-radius: 50%; background: rgba(8, 32, 75, .87); color: #fff; font-size: 27px; line-height: 1; cursor: pointer; }
.about-timeline-section { overflow: hidden; padding-top: 80px; padding-bottom: 82px; }
.timeline-scroll { overflow-x: auto; padding: 16px 0 20px; cursor: grab; scrollbar-color: #a7bee0 #edf4fb; scrollbar-width: thin; }
.timeline-scroll.is-dragging { cursor: grabbing; user-select: none; }
.timeline-track { display: grid; grid-auto-columns: minmax(270px, 31vw); grid-auto-flow: column; width: max-content; min-width: 100%; border-top: 2px solid #bcd2eb; }
.timeline-year { position: relative; min-height: 285px; padding: 31px 28px 25px; border-left: 1px solid #d6e4f2; }
.timeline-year::before { position: absolute; top: -8px; left: -7px; width: 13px; height: 13px; border: 2px solid #fff; border-radius: 50%; background: var(--toknav-brand-primary); content: ""; box-shadow: 0 0 0 1px #8daed5; }
.timeline-year > span { color: var(--toknav-brand-primary); font-size: 24px; font-weight: 850; letter-spacing: -.035em; }
.timeline-year ul { display: grid; gap: 13px; padding: 19px 0 0; margin: 0; list-style: none; }
.timeline-year li { color: #344a65; font-size: 14px; line-height: 1.38; }
.about-contact-band { padding: 44px 0; border-top: 1px solid #d5e4f2; background: #edf6ff; }
.about-contact-band .content-container { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.about-contact-band .eyebrow { color: var(--toknav-brand-primary); }
.about-contact-band h2 { max-width: 720px; margin: 0; color: var(--text-primary); font-size: clamp(28px, 3vw, 46px); line-height: 1.02; }

/* Contact page: original content and sequence, refreshed visual treatment. */
.contact-page-hero { padding: 82px 0 78px; border-bottom: 1px solid #d7e6f4; background: linear-gradient(120deg, #eff7ff 0%, #fff 53%, #eaf5ff 100%); }
.contact-page-hero__grid { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr); gap: 68px; align-items: end; }
.contact-page-hero .crumbs { margin: 0 0 23px; color: var(--text-secondary); }
.contact-page-hero .display { max-width: 800px; margin: 0 0 24px; font-size: clamp(42px, 5.5vw, 76px); line-height: .91; }
.contact-page-hero .lede { max-width: 760px; color: var(--text-secondary); }
.contact-route-links { display: flex; flex-wrap: wrap; gap: 10px 20px; margin-top: 34px; }
.contact-route-links a { display: inline-flex; gap: 5px; align-items: center; color: var(--text-primary); font-size: 14px; font-weight: 800; text-decoration: none; }
.contact-route-links svg { width: 16px; height: 16px; color: var(--toknav-brand-primary); }
.contact-direct-card { padding: 36px; border-radius: 17px; background: #102b58; box-shadow: 0 18px 42px rgba(9,43,89,.22); color: #fff; }
.contact-direct-card > span { color: #9bcaff; font-size: 11px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.contact-direct-card h2 { margin: 18px 0 5px; color: #fff; font-size: 34px; }
.contact-direct-card p { margin: 0 0 24px; color: #c6dbef; font-size: 14px; }
.contact-direct-card a { display: block; width: max-content; max-width: 100%; margin: 11px 0; color: #fff; font-size: 15px; text-decoration: none; overflow-wrap: anywhere; }
.contact-direct-card .contact-direct-card__whatsapp { margin-top: 20px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.2); color: #8fe1b8; font-weight: 800; }
.contact-enquiry__grid { display: grid; grid-template-columns: minmax(300px, .82fr) minmax(520px, 1.18fr); gap: clamp(44px, 5vw, 72px); align-items: start; }
.contact-enquiry h2 { margin: 0 0 18px; font-size: clamp(34px, 3.8vw, 58px); line-height: .99; }
.contact-enquiry > .content-container > div > p { max-width: 490px; color: var(--text-secondary); font-size: 16px; line-height: 1.7; }
.contact-enquiry__steps { display: grid; gap: 0; padding: 0; margin: 30px 0; list-style: none; }
.contact-enquiry__steps li { display: flex; align-items: center; gap: 13px; min-height: 49px; border-bottom: 1px solid #d8e5f1; color: var(--text-primary); font-size: 14px; font-weight: 650; }
.contact-enquiry__steps span { display: grid; width: 27px; height: 27px; place-items: center; border-radius: 50%; color: var(--toknav-brand-primary); background: #e8f3ff; font-size: 10px; font-weight: 850; }
.contact-team-card { display: grid; gap: 5px; padding: 21px 22px; border: 1px solid #d4e2ef; border-radius: 12px; background: #f8fbff; }
.contact-team-card strong { font-size: 17px; }
.contact-team-card span { color: var(--text-secondary); font-size: 14px; }
.contact-team-card a { margin-top: 8px; color: var(--toknav-brand-primary); font-size: 14px; font-weight: 800; text-decoration: none; }
.contact-team-card svg { width: 16px; height: 16px; vertical-align: middle; }
.contact-form-static { padding: 32px; border: 1px solid #d1e1ef; border-radius: 16px; background: #fff; box-shadow: 0 16px 40px rgba(10,43,89,.1); }
.contact-form-static .field-grid { margin-top: 0; gap: 17px 20px; }
.contact-form-static .field label { color: var(--text-primary); font-size: 13px; font-weight: 750; }
.contact-form-static .field input, .contact-form-static .field select, .contact-form-static .field textarea { margin-top: 8px; border-color: #c7d8e8; color: var(--text-primary); font: inherit; }
.contact-form-static input[type="file"] { padding: 11px 13px; background: #f9fbfe; }
.contact-address { background: #f5f9fe; }
.contact-address__grid { display: grid; grid-template-columns: minmax(285px, .68fr) minmax(0, 1.32fr); gap: 28px; }
.contact-office-card { display: grid; gap: 7px; align-content: start; min-height: 105px; padding: 22px 24px; border: 1px solid #c9deef; border-radius: 13px; background: #edf6ff; box-shadow: inset 5px 0 0 var(--toknav-brand-primary); }
.contact-office-card strong { color: var(--text-primary); font-size: 18px; }
.contact-office-card span { color: var(--text-secondary); font-size: 14px; }
.contact-map-card { overflow: hidden; min-height: 458px; border: 1px solid #bcd6ef; border-radius: 18px; background: #e9f4ff; }
.contact-map-card iframe { display: block; width: 100%; height: 310px; border: 0; background: #e5f0fb; }
.contact-map-card > div { display: grid; gap: 10px; padding: 25px 28px 27px; background: #fff; }
.contact-map-card strong { color: var(--text-primary); font-size: 20px; }
.contact-map-card address { color: var(--text-secondary); font-size: 14px; font-style: normal; line-height: 1.55; }
.contact-map-card a { color: var(--toknav-brand-primary); font-size: 14px; font-weight: 800; text-decoration: none; }
.contact-page-cta { padding: 52px 0; background: linear-gradient(110deg, #122e60, #2453d4); }
.contact-page-cta .content-container { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.contact-page-cta .eyebrow { color: #a9ceff; }
.contact-page-cta h2 { max-width: 710px; margin: 0; color: #fff; font-size: clamp(29px, 4vw, 53px); line-height: .98; }

/* Preview index and components */
.preview-index { min-height: 100vh; background: #f4f6fa; }
.preview-index-main { padding: 86px 0; }
.preview-index-head { max-width: 760px; margin-bottom: 52px; }
.preview-index-head p { color: var(--text-secondary); font-size: 18px; }
.preview-index-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.preview-index-card { display: flex; min-height: 210px; flex-direction: column; justify-content: space-between; padding: 24px; border: 1px solid var(--border-default); border-radius: var(--radius-medium); background: #fff; }
.preview-index-card .number { color: var(--toknav-brand-primary); font-size: 12px; font-weight: 850; letter-spacing: .08em; }
.preview-index-card p { color: var(--text-secondary); font-size: 14px; }
.component-demo { padding-bottom: 100px; }
.component-demo .demo-block { margin: 28px 0 64px; border: 1px solid var(--border-default); background: #fff; }
.component-demo h2 { margin: 0 0 8px; }
.component-demo .demo-copy { color: var(--text-secondary); }

/* Responsive */
@media (max-width: 1150px) {
  .about-hero-grid, .about-company-profile__intro, .contact-page-hero__grid, .contact-enquiry__grid { grid-template-columns: 1fr; gap: 38px; }
  .about-company-video { max-width: 820px; }
  .about-company-profile__intro > p { max-width: 720px; }
  .contact-page-hero__grid { align-items: start; }
  .contact-direct-card { max-width: 540px; }
  .contact-address__grid { grid-template-columns: 1fr; }
  .contact-office-card { max-width: 360px; }
}
@media (max-width: 1500px) {
  .header-actions .dealer { display: none; }
}
@media (max-width: 1280px) {
  .header-inner { gap: 10px; }
  .header-social { gap: 2px; }
  .header-social a { width: 22px; height: 22px; }
  .header-search { width: 112px; }
  .nav-trigger { padding-inline: 9px; }
}
@media (max-width: 1100px) {
  .header-inner { gap: 12px; }
  .brand img { width: 140px; }
  .nav-trigger { padding: 0 8px; font-size: 13px; }
  .header-actions .dealer { display: none; }
  .header-social { display: none; }
  .header-search { width: 102px; }
  .mega-inner { grid-template-columns: repeat(3, 1fr); }
  .mega-callout { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 24px; min-height: 130px; }
  .mega-callout p { margin-bottom: 0; }
  .mega-callout .button { width: auto; }
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .application-grid { grid-template-columns: repeat(2, 1fr); }
  .product-hero-grid { gap: 28px; }
}
@media (max-width: 780px) {
  body { padding-bottom: 67px; }
  .container, .content-container { width: min(calc(100% - 40px), var(--container-wide)); }
  .section { padding: 64px 0; }
  .section-head { display: block; margin-bottom: 30px; }
  .section-head p { margin-top: 12px; }
  .desktop-nav, .header-actions, .mega-layer { display: none !important; }
  .site-header { position: relative; }
  .header-inner { min-height: 62px; }
  .brand img { width: 136px; }
  .mobile-header { display: flex; align-items: center; gap: 4px; }
  .mobile-drawer { position: fixed; z-index: 65; top: 0; right: 0; bottom: 0; display: none; width: min(360px, calc(100vw - 42px)); padding: 18px 20px 28px; background: #fff; box-shadow: -12px 0 40px rgba(16, 31, 60, .18); overflow-y: auto; }
  .mobile-drawer.is-open { display: block; }
  .mobile-drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
  .mobile-drawer-head img { width: 138px; }
  .mobile-drawer summary { display: flex; align-items: center; justify-content: space-between; padding: 15px 0; border-bottom: 1px solid var(--border-default); cursor: pointer; color: var(--text-primary); font-size: 16px; font-weight: 800; list-style: none; }
  .mobile-drawer summary::-webkit-details-marker { display: none; }
  .mobile-drawer summary::after { content: "+"; color: var(--toknav-brand-primary); font-size: 22px; font-weight: 400; }
  .mobile-drawer details[open] summary::after { content: "−"; }
  .mobile-subnav { display: grid; gap: 5px; padding: 10px 0 8px; }
  .mobile-subnav a { padding: 7px 2px; color: var(--text-secondary); font-size: 14px; }
  .mobile-drawer .drawer-actions { display: grid; gap: 10px; margin-top: 26px; }
  .mobile-drawer .language-button { margin-top: 17px; }
  .site-footer { padding-bottom: 0; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px 24px; padding: 54px 0 34px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { display: block; }
  .footer-bottom nav { margin-top: 10px; }
  .floating-whatsapp { right: 18px; bottom: 82px; }
  .mobile-bottom-cta { position: fixed; z-index: 20; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 8px 12px; border-top: 1px solid var(--border-default); background: rgba(255,255,255,.98); }
  .mobile-bottom-cta .button { min-height: 48px; }
  .home-hero { padding: 58px 0 54px; }
  .home-hero::after { display: none; }
  .home-carousel-hero { min-height: 540px; height: 540px; }
  .home-carousel-slide img { object-position: 58% center; }
  .hero-carousel-controls { bottom: 18px; }
  .home-banner-context { min-height: 86px; }
  .hero-context { min-height: 86px; gap: 18px; padding: 16px 0; }
  .hero-context strong { font-size: 16px; }
  .hero-context .text-link { flex: 0 0 auto; font-size: 13px; }
  .home-categories-section { padding-top: 58px; }
  .category-image { min-height: 240px; }
  .category-image img { height: 216px; }
  .home-hero-grid, .page-hero-grid, .product-hero-grid, .comparison-band, .proof-grid, .system-grid, .about-hero-grid, .contact-layout { grid-template-columns: 1fr; gap: 34px; }
  .hero-visual { order: -1; min-height: 300px; }
  .hero-product { max-height: 290px; }
  .hero-tag { right: 4px; bottom: 5px; }
  .trust-row { grid-template-columns: 1fr; gap: 9px; margin-top: 30px; }
  .application-grid, .selection-grid, .challenge-list { grid-template-columns: 1fr; }
  .grid--2, .grid--3, .grid--4, .grid--6 { grid-template-columns: 1fr; }
  .product-card { min-height: auto; }
  .metric-grid { grid-template-columns: repeat(2, 1fr); }
  .metric:nth-child(2) { border-right: 0; }
  .metric:nth-child(-n+2) { border-bottom: 1px solid var(--border-default); }
  .comparison-cells { grid-template-columns: 1fr; }
  .comparison-cell { min-height: 0; border-right: 0; }
  .comparison-cell:last-child { border-bottom: 0; }
  .page-hero { padding: 55px 0; }
  .page-hero-image { min-height: 220px; }
  .filter-bar { gap: 7px; }
  .filter-label { width: 100%; }
  .series-table { display: block; overflow-x: auto; white-space: nowrap; }
  .product-gallery { min-height: 330px; }
  .product-gallery .main-image { height: 285px; }
  .product-facts { grid-template-columns: 1fr; }
  .product-fact:nth-child(even) { padding-left: 0; border-left: 0; }
  .benefit-grid, .workflow, .about-process { grid-template-columns: 1fr; }
  .benefit { border-right: 0; border-bottom: 1px solid var(--border-default); }
  .benefit:last-child { border-bottom: 0; }
  .workflow-step { min-height: 0; padding: 18px 0 18px 18px; border-left: 1px solid var(--border-strong); border-top: 0; }
  .workflow-step:not(:last-child)::after { top: auto; right: auto; bottom: -6px; left: -6px; }
  .spec-layout { grid-template-columns: 1fr; gap: 26px; }
  .spec-nav { display: none; }
  .spec-list div { grid-template-columns: 1fr; gap: 3px; }
  .solution-hero { min-height: 440px; padding: 58px 0; }
  .about-hero { padding: 58px 0; }
  .company-facts { grid-template-columns: 1fr; }
  .company-facts div, .company-facts div:nth-child(even) { border-right: 0; }
  .about-process .process-step { border-right: 0; border-bottom: 1px solid var(--border-default); }
  .about-process .process-step:last-child { border-bottom: 0; }
  .cert-card { grid-template-columns: 1fr; }
  .cert-card img { min-height: 180px; max-height: 220px; }
  .contact-quick { grid-template-columns: 1fr; }
  .contact-quick div { border-right: 0; border-bottom: 1px solid var(--border-default); }
  .contact-quick div:last-child { border-bottom: 0; }
  .field-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .about-hero { padding: 52px 0 58px; }
  .about-hero .display { font-size: clamp(39px, 12vw, 58px); }
  .about-company-profile { padding-top: 64px; padding-bottom: 64px; }
  .about-company-profile__intro { gap: 22px; }
  .about-company-profile__facts { grid-template-columns: 1fr; margin-top: 30px; }
  .about-company-profile__facts article, .about-company-profile__facts article:nth-child(even), .about-company-profile__facts article:nth-child(n+3) { min-height: 0; padding: 20px; border-right: 0; border-bottom: 1px solid #d5e3f0; }
  .about-company-profile__facts article:last-child { border-bottom: 0; }
  .certificate-stage { height: 445px; }
  .certificate { width: 90px; }
  .certificate-stage > p { right: 16px; bottom: 13px; left: 16px; font-size: 11px; }
  .certificate--iso { left: 4%; top: 10%; }
  .certificate--p8 { left: 20%; top: 25%; }
  .certificate--t10-ce { left: 36%; top: 7%; }
  .certificate--t5-ce { left: 52%; top: 25%; }
  .certificate--t45 { left: 68%; top: 8%; }
  .certificate--tag66 { left: 81%; top: 24%; }
  .certificate--t10-fcc { left: 5%; top: 51%; }
  .certificate--t20-fcc { left: 23%; top: 55%; }
  .certificate--t10-gnpcv { left: 41%; top: 50%; }
  .certificate--t5-gnpcv { left: 59%; top: 54%; }
  .certificate--kc { left: 77%; top: 49%; }
  .field-gallery-grid { display: block; column-count: 2; column-gap: 3px; }
  .field-gallery-row { display: contents; }
  .field-gallery-card { display: block; width: 100%; margin: 0 0 3px; break-inside: avoid; aspect-ratio: auto; }
  .field-gallery-card img { height: auto; object-fit: contain; }
  .about-timeline-section { padding-top: 64px; padding-bottom: 64px; }
  .timeline-track { grid-auto-columns: minmax(255px, 78vw); }
  .timeline-year { min-height: 250px; padding: 27px 20px 20px; }
  .about-contact-band { padding: 38px 0; }
  .about-contact-band .content-container, .contact-page-cta .content-container { display: grid; gap: 22px; }
  .contact-page-hero { padding: 60px 0; }
  .contact-page-hero .display { font-size: clamp(40px, 12vw, 58px); }
  .contact-direct-card { padding: 27px; }
  .contact-enquiry h2 { font-size: clamp(32px, 10vw, 45px); }
  .contact-form-static { padding: 22px 18px; }
  .contact-map-card { min-height: 420px; }
  .contact-map-card iframe { height: 270px; }
  .contact-page-cta { padding: 43px 0; }
  .preview-index-main { padding: 58px 0; }
  .preview-index-grid { grid-template-columns: 1fr; }
  .language-sheet { padding-bottom: 24px; }
}
@media (min-width: 781px) { .mobile-bottom-cta { display: none; } }

/* WordPress production bridge: retains the existing nonce-protected inquiry
   form and its tracking fields while matching the approved page layout. */
body.admin-bar .site-header { top: 32px; }
.toknav-visual-parity-page .tcr-contact-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 17px 20px; max-width: none; padding: 0; margin: 0; border: 0; border-radius: 0; background: transparent; }
.toknav-visual-parity-page .tcr-contact-form > input[type="hidden"], .toknav-visual-parity-page .tcr-honeypot { display: none !important; }
.toknav-visual-parity-page .tcr-contact-form .tcr-field { min-width: 0; padding: 0; margin: 0; }
.toknav-visual-parity-page .tcr-contact-form .tcr-field--full { grid-column: 1 / -1; }
.toknav-visual-parity-page .tcr-contact-form label { display: grid; gap: 8px; color: var(--text-primary); font-size: 13px; font-weight: 750; }
.toknav-visual-parity-page .tcr-contact-form input, .toknav-visual-parity-page .tcr-contact-form select, .toknav-visual-parity-page .tcr-contact-form textarea { width: 100%; margin: 0; padding: 11px 13px; border: 1px solid #c7d8e8; border-radius: 6px; color: var(--text-primary); background: #fff; font: inherit; }
.toknav-visual-parity-page .tcr-contact-form input:focus, .toknav-visual-parity-page .tcr-contact-form select:focus, .toknav-visual-parity-page .tcr-contact-form textarea:focus { border-color: var(--toknav-brand-primary); outline: 3px solid rgba(30,35,172,.16); outline-offset: 1px; }
.toknav-visual-parity-page .tcr-contact-form input[type="file"] { padding: 11px 13px; background: #f9fbfe; }
.toknav-visual-parity-page .tcr-contact-form .tcr-button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 11px 18px; border: 1px solid transparent; border-radius: var(--radius-small); color: #fff; background: var(--toknav-brand-primary); cursor: pointer; font: inherit; font-size: 15px; font-weight: 800; line-height: 1.2; }
.toknav-visual-parity-page .tcr-contact-form .tcr-button:hover { background: #151990; }
.toknav-visual-parity-page .tcr-form-success, .toknav-visual-parity-page .tcr-form-error { grid-column: 1 / -1; padding: 12px 14px; border-radius: 6px; }
.toknav-visual-parity-page .tcr-form-success { color: #146c36; background: #eaf8ef; }
.toknav-visual-parity-page .tcr-form-error { color: #a71d2a; background: #fff0f0; }

@media (max-width: 780px) {
  body.admin-bar .site-header { top: 46px; }
  .toknav-visual-parity-page .tcr-contact-form { grid-template-columns: 1fr; }
  .toknav-visual-parity-page .tcr-contact-form .tcr-field--full { grid-column: auto; }
}

/* Navigation refinement: compact decision paths instead of page-covering panels. */
.nav-direct { display: inline-flex; height: 84px; align-items: center; padding: 0 13px; color: var(--text-primary); font-size: 14px; font-weight: 800; }
.nav-direct:hover, .nav-direct:focus-visible { color: var(--toknav-brand-primary); }
.nav-direct:focus-visible { outline: 3px solid rgba(30, 35, 172, .28); outline-offset: -4px; }
.mega-layer { top: 84px; display: none; border: 0; background: transparent; box-shadow: none; pointer-events: none; }
.mega-layer.is-open { display: block; }
.mega-container { position: relative; min-height: 0; }
.mega-inner { display: block; min-height: 0; margin-top: 12px; border: 1px solid #dce5ef; border-radius: 0 0 10px 10px; background: #fff; box-shadow: 0 18px 34px rgba(18, 32, 58, .14); overflow: hidden; pointer-events: auto; }
.mega-inner[hidden] { display: none !important; }
.mega-content { display: grid; }
.mega-inner--products { width: min(900px, calc(100vw - 48px)); margin-right: auto; margin-left: auto; }
.mega-inner--products .mega-content { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.mega-inner--products .mega-column { padding: 23px 28px 14px; border-right: 1px solid #dce5ef; }
.mega-inner--products .mega-column:last-child { border-right: 0; }
.mega-inner--products .mega-kicker { margin-bottom: 8px; }
.mega-inner--products .mega-item { min-height: 0; padding: 11px 28px 11px 0; }
.mega-inner--products .mega-item strong { font-size: 15px; }
.mega-inner--products .mega-item span { margin-top: 1px; font-size: 12px; line-height: 1.35; }
.mega-inner--products .mega-item svg { width: 15px; }
.mega-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 13px 28px; border-top: 1px solid #dce5ef; background: #f4f8ff; }
.mega-footer a { display: inline-flex; gap: 7px; align-items: center; color: var(--toknav-brand-primary); font-size: 13px; font-weight: 850; }
.mega-footer a:last-child { color: var(--text-primary); }
.mega-footer svg { width: 15px; height: 15px; }
.mega-inner--compact { width: 286px; max-width: calc(100vw - 40px); margin-left: min(var(--mega-origin, 0px), calc(100% - 286px)); }
.mega-inner--compact .mega-content { display: block; }
.mega-inner--compact .mega-column { padding: 10px 18px 12px; border: 0; }
.mega-inner--compact .mega-kicker { margin: 2px 0 6px; font-size: 10px; }
.mega-inner--compact .mega-item { min-height: 0; padding: 10px 24px 10px 0; }
.mega-inner--compact .mega-item strong { font-size: 14px; }
.mega-inner--compact .mega-item span { display: none; }
.mega-inner--compact .mega-item svg { width: 14px; }
.mobile-direct { display: block; padding: 15px 0; border-bottom: 1px solid var(--border-default); color: var(--text-primary); font-size: 16px; font-weight: 800; }
@media (max-width: 1100px) {
  .mega-inner--products { width: min(760px, calc(100vw - 34px)); }
  .mega-inner--products .mega-column { padding-inline: 23px; }
}
@media (max-width: 780px) {
  .nav-direct { height: auto; }
}
