/* ATMS corporate website — styles. Consumes design tokens from ../colors_and_type.css */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font-body); color: var(--atms-ink); background: #fff;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; cursor: pointer; }
button { font-family: inherit; }

/* ---- Bilingual visibility (toggled on <html data-lang>) ---- */
html[data-lang="en"] [data-vi] { display: none !important; }
html[data-lang="vi"] [data-en] { display: none !important; }

/* ---- Layout primitives ---- */
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.app { min-height: 100vh; display: flex; flex-direction: column; }
.app-main { flex: 1; }
.eyebrow { font-family: var(--font-display); font-weight: 600; font-size: 13px;
  letter-spacing: .22em; text-transform: uppercase; color: var(--atms-cyan-600); margin: 0; }
.eyebrow.on-dark { color: var(--atms-cyan-300); }
.sec-title { font-family: var(--font-display); font-weight: 800; font-size: clamp(26px,3.2vw,40px);
  line-height: 1.08; letter-spacing: -.01em; color: var(--atms-ink); margin: 10px 0 0; }
.sec-title.light { color: #fff; }
.sec-intro { font-family: var(--font-body); font-size: 17px; line-height: 1.65; color: var(--atms-slate);
  max-width: 640px; margin: 14px 0 0; }
.sec-intro.light { color: #c0d2e6; }
[data-lucide] { width: 1em; height: 1em; stroke-width: 1.75; vertical-align: middle; }

/* ---- Buttons ---- */
.btn { font-family: var(--font-display); font-weight: 600; font-size: 14px; letter-spacing: .01em;
  border-radius: 8px; padding: 11px 20px; border: 1.5px solid transparent; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px; transition: all var(--dur) var(--ease);
  white-space: nowrap; }
.btn-lg { padding: 14px 26px; font-size: 15px; }
.btn-primary { background: var(--atms-blue-600); color: #fff; }
.btn-primary:hover { background: var(--atms-blue-700); }
.btn-primary:active { transform: translateY(1px); }
.btn-ghost { background: #fff; color: var(--atms-blue-600); border-color: var(--atms-border); }
.btn-ghost:hover { border-color: var(--atms-cyan-400); color: var(--atms-blue-700); }
.btn-ghost-light { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.4); }
.btn-ghost-light:hover { background: rgba(255,255,255,.14); border-color: #fff; }

/* ============================================================ HEADER / FOOTER */
.site-header { position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px); border-bottom: 1px solid var(--atms-border); }
.site-header.on-dark { background: rgba(7,23,46,.45); border-bottom-color: rgba(255,255,255,.12); }
.site-header.scrolled { background: rgba(255,255,255,.96); border-bottom-color: var(--atms-border); }
.site-header.scrolled .nav-link { color: var(--atms-slate); }
.header-inner { display: flex; align-items: center; gap: 26px; height: 70px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand-logo { display: block; height: 24px; position: relative; }
.brand-img { height: 24px; width: auto; display: block; transition: opacity var(--dur) var(--ease); }
.brand-img.dark { position: absolute; inset: 0; }
/* On dark (unscrolled) header: white logo. Scrolled (light header): ink logo. */
.brand-img.light { opacity: 1; }
.brand-img.dark { opacity: 0; }
.site-header.scrolled .brand-img.light { opacity: 0; }
.site-header.scrolled .brand-img.dark { opacity: 1; }
.brand-sub { font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--atms-muted); }
.site-header.on-dark:not(.scrolled) .brand-sub { color: #9fb4cb; }
.main-nav { display: flex; gap: 24px; margin-left: 8px; }
.nav-link { font-family: var(--font-display); font-weight: 500; font-size: 15px; color: var(--atms-slate);
  transition: color var(--dur) var(--ease); padding: 4px 0; position: relative; }
.site-header.on-dark:not(.scrolled) .nav-link { color: rgba(234,241,248,.85); }
.nav-link:hover { color: var(--atms-cyan-500); }
.nav-link.active { color: var(--atms-blue-600); }
.site-header.on-dark:not(.scrolled) .nav-link.active { color: #fff; }
.nav-link.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px;
  background: var(--atms-cyan-400); }
.header-right { margin-left: auto; display: flex; align-items: center; gap: 16px; }

/* Language toggle */
.lang-toggle { display: inline-flex; border: 1px solid var(--atms-border); border-radius: 999px;
  overflow: hidden; background: #fff; }
.site-header.on-dark:not(.scrolled) .lang-toggle { border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.08); }
.lang-btn { font-family: var(--font-display); font-weight: 600; font-size: 12px; letter-spacing: .04em;
  padding: 6px 12px; border: 0; background: transparent; color: var(--atms-slate); cursor: pointer;
  transition: all var(--dur) var(--ease); }
.site-header.on-dark:not(.scrolled) .lang-btn { color: rgba(234,241,248,.8); }
.lang-btn.active { background: var(--atms-blue-600); color: #fff; }
.nav-toggle { display: none; background: transparent; border: 0; color: inherit; font-size: 24px;
  cursor: pointer; line-height: 1; }

.site-footer { background: var(--atms-navy-900); color: #fff; padding: 58px 0 26px; margin-top: auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand .footer-logo { height: 30px; width: auto; display: block; }
.footer-brand p { font-size: 14px; line-height: 1.65; color: #8fa6c0; margin: 14px 0 16px; max-width: 320px; }
.footer-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-tags span { font-family: var(--font-mono); font-size: 11px; color: #aebfd4;
  border: 1px solid rgba(255,255,255,.18); border-radius: 5px; padding: 4px 8px; }
.footer-col h4 { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: .1em;
  text-transform: uppercase; color: #fff; margin: 0 0 14px; }
.footer-col a, .footer-col .f-item { display: block; font-size: 14px; color: #8fa6c0; padding: 5px 0;
  line-height: 1.5; }
.footer-col a:hover { color: var(--atms-cyan-300); }
.footer-base { display: flex; justify-content: space-between; gap: 16px; margin-top: 44px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12); font-size: 12.5px; color: #6e8298; flex-wrap: wrap; }

/* ===================================================================== HERO */
.hero { position: relative; background: var(--atms-navy-900); color: #fff; overflow: hidden;
  margin-top: -70px; padding-top: 70px; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .5; }
.hero-grad { position: absolute; inset: 0;
  background: linear-gradient(96deg, rgba(7,23,46,.95) 0%, rgba(7,23,46,.74) 46%, rgba(7,23,46,.34) 100%); }
.hero-inner { position: relative; z-index: 2; padding: 64px 32px 56px; max-width: 1200px; margin: 0 auto; }
.hero-title { font-family: var(--font-display); font-weight: 800; font-size: clamp(34px,5.2vw,62px);
  line-height: 1.05; letter-spacing: -.02em; margin: 16px 0 0; max-width: 880px; }
.hero-title .acc { color: var(--atms-cyan-300); }
.hero-lead { font-size: 19px; line-height: 1.6; color: #c6d6e8; max-width: 600px; margin: 22px 0 0; }
.hero-actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero-stats { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1px; background: rgba(255,255,255,.14); border-top: 1px solid rgba(255,255,255,.14); }
.stat { background: var(--atms-navy-900); padding: 22px 32px; }
.stat-n { font-family: var(--font-display); font-weight: 800; font-size: 28px; color: #fff; line-height: 1; }
.stat-l { font-size: 13px; color: #8fa6c0; margin-top: 6px; }

/* ================================================================= SECTIONS */
.section { padding: 76px 0; }
.section-tight { padding: 56px 0; }
.section-alt { background: var(--atms-surface); }
.section-dark { background: var(--atms-navy-800); color: #fff; }
.sec-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px;
  margin-bottom: 34px; flex-wrap: wrap; }

/* Page head (interior pages) */
.page-head { position: relative; background: var(--atms-navy-800); color: #fff; overflow: hidden;
  margin-top: -70px; padding: 70px 0 0; }
.page-head-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .28; }
.page-head-grad { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,23,46,.7), rgba(11,28,63,.92)); }
.page-head-inner { position: relative; z-index: 2; padding: 54px 32px 56px; }
.page-title { font-family: var(--font-display); font-weight: 800; font-size: clamp(30px,4vw,48px);
  margin: 10px 0 0; letter-spacing: -.015em; color: #fff; }
.page-sub { font-size: 18px; line-height: 1.6; color: #c0d2e6; max-width: 620px; margin: 16px 0 0; }
.crumbs { font-family: var(--font-mono); font-size: 12px; color: #8fa6c0; }
.crumbs a:hover { color: var(--atms-cyan-300); }

/* ---- About intro split ---- */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.split-media { position: relative; border-radius: 16px; overflow: hidden; border: 1px solid var(--atms-border);
  aspect-ratio: 4/3; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-body p { font-size: 16px; line-height: 1.7; color: var(--atms-slate); margin: 0 0 14px; }
.lede { font-size: 16px !important; line-height: 1.7 !important; color: var(--atms-slate) !important;
  font-weight: 400; }
.kv-row { display: flex; flex-wrap: wrap; gap: 10px 28px; margin-top: 22px; padding-top: 22px;
  border-top: 1px solid var(--atms-line); }
.kv { display: flex; flex-direction: column; gap: 2px; }
.kv-n { font-family: var(--font-cond); font-weight: 800; font-size: 26px; color: var(--atms-blue-600); line-height: 1; }
.kv-l { font-size: 12.5px; color: var(--atms-muted); }

/* ---- Category cards ---- */
.cat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.cat-card { background: #fff; border: 1px solid var(--atms-border); border-radius: 12px; padding: 24px;
  transition: all var(--dur) var(--ease); display: flex; flex-direction: column; }
.cat-card:hover { box-shadow: var(--sh-3); transform: translateY(-3px); border-color: var(--atms-cyan-300); }
.cat-icon { width: 46px; height: 46px; border-radius: 10px; background: var(--atms-cyan-100);
  color: var(--atms-cyan-600); display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px; }
.cat-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 18px; margin: 0 0 6px; }
.cat-card p { font-size: 14px; color: var(--atms-slate); line-height: 1.5; margin: 0 0 16px; flex: 1; }
.cat-link { font-family: var(--font-display); font-weight: 600; font-size: 13px; color: var(--atms-blue-600);
  display: inline-flex; align-items: center; gap: 6px; }
.cat-card:hover .cat-link { color: var(--atms-cyan-500); }

/* ---- Filter chips ---- */
.filter-row { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-chip { font-family: var(--font-display); font-weight: 500; font-size: 13px; padding: 9px 16px;
  border-radius: 999px; border: 1px solid var(--atms-border); background: #fff; color: var(--atms-slate);
  cursor: pointer; transition: all var(--dur) var(--ease); }
.filter-chip:hover { border-color: var(--atms-cyan-400); color: var(--atms-blue-600); }
.filter-chip.active { background: var(--atms-navy-800); color: #fff; border-color: var(--atms-navy-800); }

/* ---- Product grid / card ---- */
.prod-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.prod-card { background: #fff; border: 1px solid var(--atms-border); border-radius: 12px; overflow: hidden;
  display: flex; flex-direction: column; transition: all var(--dur) var(--ease); }
.prod-card:hover { box-shadow: var(--sh-3); transform: translateY(-3px); border-color: var(--atms-cyan-300); }
.prod-photo { height: 196px; background: radial-gradient(circle at 50% 40%, #23272d 0%, #14161a 55%, #0a0b0c 100%);
  display: flex; align-items: center; justify-content: center; padding: 18px; position: relative; }
.prod-photo img { max-height: 100%; object-fit: contain; filter: brightness(1.12) contrast(1.04); }
/* Light studio sweep — for product shots photographed on a white/grey background */
.prod-photo.is-light { background: radial-gradient(circle at 50% 36%, #ffffff 0%, #eef2f6 54%, #dbe2ea 100%); }
.prod-photo.is-light img { filter: contrast(1.03) saturate(1.02) drop-shadow(0 7px 16px rgba(11,28,63,.16)); }
.prod-photo.is-light .prod-cat-badge { color: var(--atms-blue-700); background: rgba(11,28,63,.05);
  border-color: rgba(11,28,63,.12); }
.prod-cat-badge { position: absolute; top: 12px; left: 12px; font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: .04em; color: #d6e4f2; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  border-radius: 5px; padding: 3px 8px; }
.prod-body { padding: 18px 20px 8px; flex: 1; }
.prod-pn { font-family: var(--font-mono); font-size: 11px; color: var(--atms-cyan-600); letter-spacing: .02em; }
.prod-name { font-family: var(--font-display); font-weight: 700; font-size: 18px; margin: 5px 0 6px;
  line-height: 1.18; color: var(--atms-ink); }
.prod-tag { font-size: 14px; color: var(--atms-slate); line-height: 1.5; margin: 0 0 14px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 6px; }
.spec-chip { font-family: var(--font-mono); font-size: 11px; color: var(--atms-slate); background: var(--atms-surface);
  border: 1px solid var(--atms-line); border-radius: 5px; padding: 4px 8px; }
.spec-chip.light { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); color: #d6e4f2; }
.prod-go { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px;
  border-top: 1px solid var(--atms-line); font-family: var(--font-display); font-weight: 600; font-size: 13px;
  color: var(--atms-blue-600); }
.prod-card:hover .prod-go { color: var(--atms-cyan-500); }

/* Studio placeholder for products without a photo */
.studio-ph { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 10px;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.025) 0 10px, rgba(255,255,255,0) 10px 20px),
    radial-gradient(circle at 50% 40%, #1b1d20, #0a0b0c); }
.studio-ph .ph-pn { font-family: var(--font-mono); font-size: 13px; color: #7e93a8; letter-spacing: .05em; }
.studio-ph .ph-note { font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  color: #4a5a6e; }
.studio-ph .ph-glyph { width: 44px; height: 44px; border-radius: 9px; border: 1px solid rgba(255,255,255,.14);
  display: flex; align-items: center; justify-content: center; color: #5b6e83; font-size: 22px; }

/* ============================================================ PRODUCT DETAIL */
.detail-hero { position: relative; background: var(--atms-navy-800); color: #fff; overflow: hidden;
  margin-top: -70px; padding: 70px 0 0; }
.detail-hero-inner { position: relative; z-index: 2; padding: 36px 32px 56px; }
.detail-hero-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 48px; align-items: center; }
.detail-photo { background: radial-gradient(circle at 50% 42%, #262b31 0%, #15171b 55%, #0a0b0c 100%); border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08); padding: 30px; height: 400px; display: flex;
  align-items: center; justify-content: center; }
.detail-photo img { max-height: 100%; object-fit: contain; filter: brightness(1.13) contrast(1.05); }
/* Light lightbox panel on the dark hero — for white/grey studio shots */
.detail-photo.is-light { background: radial-gradient(circle at 50% 38%, #ffffff 0%, #eef2f6 56%, #d7dee7 100%);
  border-color: rgba(11,28,63,.10); box-shadow: 0 18px 50px rgba(0,0,0,.34); }
.detail-photo.is-light img { filter: contrast(1.03) saturate(1.02) drop-shadow(0 10px 22px rgba(11,28,63,.18)); }
.back-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: #8fa6c0;
  margin-bottom: 18px; font-family: var(--font-display); font-weight: 500; }
.back-link:hover { color: var(--atms-cyan-300); }
.detail-title { font-family: var(--font-display); font-weight: 800; font-size: clamp(28px,3.4vw,42px);
  line-height: 1.05; margin: 8px 0 6px; letter-spacing: -.01em; }
.detail-pn { font-family: var(--font-mono); font-size: 14px; color: var(--atms-cyan-300); margin-bottom: 16px; }
.detail-lead { font-size: 16px; line-height: 1.66; color: #c6d6e8; max-width: 560px; }
.detail-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.detail-body { padding: 64px 0; }
.detail-cols { display: grid; grid-template-columns: 1.25fr 1fr; gap: 48px; }
.block-label { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--atms-graphite); margin: 0 0 16px; }
.block + .block { margin-top: 40px; }

/* Signature spec table */
.spec-table { border: 1px solid var(--atms-border); border-radius: 10px; overflow: hidden; }
.spec-table .spec-head { background: var(--atms-navy-800); color: #fff; font-family: var(--font-display);
  font-weight: 600; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; padding: 11px 18px;
  display: flex; justify-content: space-between; }
.spec-row { display: flex; justify-content: space-between; gap: 16px; padding: 12px 18px; font-size: 14px;
  border-top: 1px solid var(--atms-line); }
.spec-row:nth-child(even) { background: var(--atms-surface); }
.spec-k { color: var(--atms-slate); }
.spec-v { font-family: var(--font-mono); font-size: 13px; color: var(--atms-ink); font-weight: 500;
  text-align: right; }
.feat-list, .apps-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.feat-list li, .apps-list li { display: flex; align-items: flex-start; gap: 11px; font-size: 15px;
  color: var(--atms-graphite); line-height: 1.45; }
.feat-list i { color: var(--atms-cyan-500); flex: none; margin-top: 2px; }
.apps-list i { color: var(--atms-ok); flex: none; margin-top: 2px; }
.compliance-note { display: flex; gap: 11px; align-items: flex-start; margin-top: 26px; padding: 16px 18px;
  background: var(--atms-cyan-100); border-radius: 10px; font-size: 13.5px; color: #0c5a73; line-height: 1.55; }
.compliance-note i { color: var(--atms-cyan-600); font-size: 20px; flex: none; }

/* ---- Capabilities (dark) ---- */
.cap-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.cap-card { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1); border-radius: 12px;
  padding: 28px; }
.cap-icon { width: 48px; height: 48px; border-radius: 10px; background: rgba(22,166,219,.16);
  color: var(--atms-cyan-300); display: flex; align-items: center; justify-content: center; font-size: 24px;
  margin-bottom: 18px; }
.cap-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 19px; margin: 0 0 8px; }
.cap-card p { font-size: 14.5px; line-height: 1.6; color: #aebfd4; margin: 0; }
.tools-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 36px;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,.12); }
.tools-label { font-family: var(--font-display); font-weight: 600; font-size: 12px; letter-spacing: .14em;
  text-transform: uppercase; color: #8fa6c0; margin-right: 6px; }
.tool-pill { font-family: var(--font-mono); font-size: 12px; color: #d6e4f2; border: 1px solid rgba(255,255,255,.18);
  border-radius: 6px; padding: 6px 11px; }

/* ---- Mission / vision ---- */
.mission-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.mission-card { background: #fff; border: 1px solid var(--atms-border); border-radius: 12px; padding: 28px;
  border-top: 3px solid var(--atms-cyan-400); }
.mission-card .m-num { font-family: var(--font-cond); font-weight: 800; font-size: 30px; color: var(--atms-cyan-400);
  line-height: 1; }
.mission-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 19px; margin: 14px 0 8px; }
.mission-card p { font-size: 14.5px; color: var(--atms-slate); line-height: 1.6; margin: 0; }

/* ---- Timeline (vertical, dense) ---- */
.timeline { position: relative; margin-top: 8px; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 6px; bottom: 6px; width: 2px;
  background: var(--atms-line); }
.tl-item { position: relative; padding: 0 0 30px 40px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before { content: ""; position: absolute; left: 0; top: 4px; width: 16px; height: 16px;
  border-radius: 50%; background: #fff; border: 3px solid var(--atms-cyan-400); box-sizing: border-box; }
.tl-year { font-family: var(--font-cond); font-weight: 800; font-size: 24px; color: var(--atms-blue-600);
  line-height: 1; margin-bottom: 8px; }
.tl-list { margin: 0; padding-left: 18px; }
.tl-list li { font-size: 14.5px; color: var(--atms-slate); line-height: 1.55; margin-bottom: 4px; }
.tl-cols { columns: 2; column-gap: 56px; }
.tl-cols .tl-item { break-inside: avoid; }

/* ---- Partner / network cards ---- */
.net-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.net-card { background: #fff; border: 1px solid var(--atms-border); border-radius: 12px; padding: 24px; }
.net-card .n-icon { width: 42px; height: 42px; border-radius: 9px; background: var(--atms-surface);
  color: var(--atms-blue-600); display: flex; align-items: center; justify-content: center; font-size: 20px;
  margin-bottom: 14px; border: 1px solid var(--atms-line); }
.net-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 16px; margin: 0 0 6px; }
.net-card p { font-size: 13.5px; color: var(--atms-slate); line-height: 1.55; margin: 0; }

/* ---- CTA band ---- */
.cta-band { position: relative; overflow: hidden; color: #fff; }
.cta-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-grad { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,28,63,.95), rgba(16,42,82,.78)); }
.cta-inner { position: relative; z-index: 2; padding: 66px 32px; text-align: center; }
.cta-inner h2 { font-family: var(--font-display); font-weight: 800; font-size: clamp(24px,3vw,36px);
  margin: 0 0 12px; letter-spacing: -.01em; }
.cta-inner p { font-size: 17px; color: #c6d6e8; margin: 0 0 26px; }

/* ---- Contact ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-row { display: flex; gap: 16px; align-items: flex-start; padding: 20px 0;
  border-bottom: 1px solid var(--atms-line); }
.contact-row:first-child { padding-top: 0; }
.contact-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--atms-cyan-100);
  color: var(--atms-cyan-600); display: flex; align-items: center; justify-content: center; font-size: 20px;
  flex: none; }
.contact-h { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: .04em;
  text-transform: uppercase; color: var(--atms-graphite); margin-bottom: 5px; }
.contact-v { font-size: 15.5px; color: var(--atms-slate); line-height: 1.55; }
.contact-v a:hover { color: var(--atms-blue-600); }
.map-card { border-radius: 14px; overflow: hidden; border: 1px solid var(--atms-border);
  background: var(--atms-surface); aspect-ratio: 4/3; position: relative;
  display: flex; align-items: center; justify-content: center; }
.map-card iframe { width: 100%; height: 100%; border: 0; }

/* ===================================================================== RESPONSIVE */
@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .net-grid, .cat-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .main-nav { display: none; }
  .main-nav.open { display: flex; position: absolute; top: 70px; left: 0; right: 0; flex-direction: column;
    gap: 0; background: #fff; border-bottom: 1px solid var(--atms-border); padding: 8px 32px 16px;
    box-shadow: var(--sh-3); }
  .main-nav.open .nav-link { padding: 12px 0; border-bottom: 1px solid var(--atms-line); color: var(--atms-slate); }
  .nav-toggle { display: block; color: var(--atms-ink); }
  .site-header.on-dark:not(.scrolled) .nav-toggle { color: #fff; }
  .detail-hero-grid, .detail-cols, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .prod-grid, .cap-grid, .mission-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .tl-cols { columns: 1; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  .prod-grid, .cap-grid, .mission-grid, .net-grid, .cat-grid, .hero-stats, .footer-grid { grid-template-columns: 1fr; }
  .brand-sub { display: none; }
}
