:root {
  --navy: #004165;
  --navy-2: #075482;
  --blue: #075482;
  --cyan: #24B4D5;
  --cyan-bright: #18B9DB;
  --cyan-soft: rgba(36,180,213,.1);
  --orange: #24B4D5;
  --orange-dark: #075482;
  --green: #075482;
  --green-soft: rgba(36,180,213,.1);
  --ink: #000;
  --muted: rgba(0,65,101,.72);
  --line: rgba(0,65,101,.18);
  --soft: rgba(36,180,213,.07);
  --white: #fff;
  --shadow: 0 24px 70px rgba(0,65,101,.14);
  --shadow-sm: 0 12px 35px rgba(0,65,101,.11);
  --radius: 24px;
  --radius-sm: 14px;
  --container: 1240px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); font-family: var(--font); font-size: 16px; line-height: 1.65; background: var(--white); overflow-x: hidden; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--navy); line-height: 1.14; letter-spacing: -.035em; }
h1 { font-size: clamp(2.65rem, 5.1vw, 5.35rem); margin-bottom: 24px; }
h2 { font-size: clamp(2rem, 3.4vw, 3.65rem); margin-bottom: 20px; }
h3 { font-size: 1.3rem; margin-bottom: 12px; }
p { color: var(--muted); }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 112px 0; }
.muted { color: var(--muted); }
.icon { width: 24px; height: 24px; flex: 0 0 auto; }
.icon-sm { width: 17px; height: 17px; }
.skip-link { position: fixed; left: 20px; top: -80px; z-index: 9999; background: var(--orange); color: var(--navy); padding: 10px 18px; font-weight: 800; border-radius: 0 0 8px 8px; }
.skip-link:focus { top: 0; }

.announcement { background: #004165; color: rgba(36,180,213,.1); font-size: .83rem; }
.announcement-inner { min-height: 38px; display: flex; justify-content: center; align-items: center; gap: 14px; }
.announcement a { color: #fff; font-weight: 750; display: inline-flex; align-items: center; gap: 6px; }
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,.94); border-bottom: 1px solid rgba(36,180,213,.08); backdrop-filter: blur(18px); }
.header-inner { min-height: 82px; display: flex; align-items: center; gap: 34px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-mark { width: 42px; height: 42px; position: relative; display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 4px; transform: rotate(-3deg); }
.brand-mark span { border-radius: 5px; }
.brand-mark span:nth-child(1) { background: var(--navy); grid-row: 1 / span 2; }
.brand-mark span:nth-child(2) { background: var(--cyan); }
.brand-mark span:nth-child(3) { background: var(--orange); }
.brand-copy { display: flex; flex-direction: column; line-height: 1.05; }
.brand-copy strong { color: var(--navy); font-size: 1rem; letter-spacing: -.02em; }
.brand-copy small { color: var(--blue); text-transform: uppercase; letter-spacing: .21em; font-weight: 800; font-size: .61rem; margin-top: 5px; }
.desktop-nav { margin-left: auto; display: flex; align-items: center; gap: 2px; }
.nav-link { border: 0; background: none; padding: 28px 13px; color: #075482; font-size: .92rem; font-weight: 720; position: relative; }
.nav-link:hover, .nav-link.active { color: var(--blue); }
.nav-link.active::after { content: ""; position: absolute; left: 13px; right: 13px; bottom: 17px; height: 2px; background: var(--orange); border-radius: 4px; }
.nav-dropdown { position: relative; }
.chevron { display: inline-block; margin-left: 4px; transition: transform .25s ease; }
.nav-dropdown:hover .chevron, .nav-dropdown:focus-within .chevron { transform: rotate(180deg); }
.mega-menu { position: absolute; top: calc(100% - 5px); left: -145px; width: 700px; padding: 18px; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow); border-radius: 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: .2s ease; }
.nav-dropdown:hover .mega-menu, .nav-dropdown:focus-within .mega-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.mega-menu a { display: flex; gap: 12px; padding: 13px; border-radius: 12px; }
.mega-menu a:hover { background: var(--soft); }
.mega-menu svg { color: var(--blue); width: 22px; margin-top: 3px; }
.mega-menu span { display: flex; flex-direction: column; }
.mega-menu strong { color: var(--navy); font-size: .9rem; }
.mega-menu small { color: var(--muted); line-height: 1.4; font-size: .73rem; }
.header-actions { display: flex; gap: 9px; }
.menu-toggle { display: none; border: 0; background: transparent; color: var(--navy); padding: 8px; }
.mobile-panel { display: none; }

.btn { min-height: 50px; padding: 13px 22px; border-radius: 11px; display: inline-flex; justify-content: center; align-items: center; gap: 9px; font-weight: 800; border: 1px solid transparent; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--orange); color: #004165; box-shadow: 0 10px 24px rgba(36,180,213,.28); }
.btn-primary:hover { background: #24B4D5; box-shadow: 0 15px 30px rgba(36,180,213,.35); }
.btn-secondary { border-color: var(--line); background: #fff; color: var(--navy); }
.btn-secondary:hover { border-color: rgba(0,65,101,.32); box-shadow: var(--shadow-sm); }
.btn-ghost { color: var(--blue); background: #fff; }
.btn-sm { min-height: 42px; padding: 9px 15px; font-size: .86rem; }
.btn-light { background: #fff; color: var(--navy); }
.btn-outline-light { border-color: rgba(255,255,255,.4); color: #fff; }
.btn-block { width: 100%; }
.text-link { display: inline-flex; gap: 8px; align-items: center; color: var(--blue); font-weight: 850; }
.eyebrow { display: inline-block; color: var(--blue); font-size: .76rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 17px; }
.section-heading { max-width: 700px; margin-bottom: 48px; }
.section-heading.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading p { max-width: 640px; font-size: 1.06rem; }
.section-heading.center p { margin-inline: auto; }

.hero { position: relative; background: radial-gradient(circle at 80% 25%, rgba(36,180,213,.14), transparent 32%), linear-gradient(135deg, #fff 0%, #fff 50%, #fff 100%); overflow: hidden; }
.hero::before { content: ""; position: absolute; width: 520px; height: 520px; border: 1px solid rgba(7,84,130,.09); border-radius: 50%; left: -260px; top: -180px; box-shadow: 0 0 0 70px rgba(7,84,130,.025), 0 0 0 140px rgba(7,84,130,.02); }
.hero-grid { min-height: 700px; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 58px; padding-top: 76px; padding-bottom: 88px; position: relative; z-index: 1; }
.hero-copy em { font-style: normal; color: var(--blue); }
.hero-lead { font-size: 1.19rem; max-width: 680px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 34px 0 28px; }
.hero-proof { display: flex; gap: 22px; flex-wrap: wrap; font-size: .88rem; color: #075482; font-weight: 700; }
.hero-proof span { display: flex; align-items: center; gap: 6px; }
.hero-proof svg { color: var(--green); }
.hero-visual { min-height: 520px; position: relative; }
.dashboard-window { position: absolute; width: 92%; right: 0; top: 28px; background: #fff; border: 1px solid rgba(36,180,213,.1); border-radius: 20px; box-shadow: 0 36px 90px rgba(0,65,101,.2); overflow: hidden; transform: perspective(1200px) rotateY(-5deg) rotateX(2deg); }
.dash-top { height: 44px; background: #fff; border-bottom: 1px solid #fff; display: flex; align-items: center; gap: 12px; padding: 0 16px; font-size: .67rem; font-weight: 800; color: #075482; }
.window-dots { display: flex; gap: 5px; margin-right: auto; }
.window-dots i { width: 7px; height: 7px; border-radius: 50%; background: rgba(36,180,213,.1); }
.window-dots i:nth-child(1) { background: #24B4D5; }.window-dots i:nth-child(2) { background: #24B4D5; }.window-dots i:nth-child(3) { background: #24B4D5; }
.live-pill { color: var(--green); background: var(--green-soft); padding: 4px 8px; border-radius: 20px; }
.dash-body { display: grid; grid-template-columns: 54px 1fr; min-height: 350px; }
.dash-side { background: var(--navy); display: flex; flex-direction: column; align-items: center; padding: 15px 0; gap: 18px; }
.dash-side b { width: 28px; height: 28px; background: var(--cyan); color: #fff; border-radius: 8px; display: grid; place-items: center; font-size: .66rem; }
.dash-side i { width: 16px; height: 4px; background: #075482; border-radius: 6px; }.dash-side i.active { background: var(--orange); }
.dash-content { padding: 21px; background: #fff; }
.dash-title { display: flex; justify-content: space-between; align-items: flex-start; }
.dash-title div { display: flex; flex-direction: column; }.dash-title small { color: rgba(0,65,101,.62); font-size: .62rem; }.dash-title strong { color: var(--navy); font-size: .94rem; }.dash-title > span { border: 1px solid var(--line); background: #fff; border-radius: 7px; padding: 6px 9px; font-size: .58rem; color: #075482; }
.dash-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin: 18px 0; }
.dash-stats > div { background: #fff; border: 1px solid #fff; padding: 13px; border-radius: 10px; display: flex; flex-direction: column; }
.dash-stats small { color: rgba(0,65,101,.62); font-size: .52rem; letter-spacing: .08em; }.dash-stats strong { color: var(--navy); font-size: 1.12rem; }.dash-stats span { font-size: .52rem; color: rgba(0,65,101,.62); }.dash-stats .trend { color: var(--green); }
.dash-panels { display: grid; grid-template-columns: 1.25fr .75fr; gap: 10px; }
.chart-card,.gate-card { background: #fff; border: 1px solid #fff; border-radius: 10px; padding: 13px; min-height: 145px; }
.panel-head { display: flex; justify-content: space-between; font-size: .55rem; color: rgba(0,65,101,.62); }.panel-head b { color: var(--navy); font-size: .66rem; }
.bars { display: flex; align-items: end; height: 92px; gap: 7px; padding-top: 16px; }
.bars i { flex: 1; background: linear-gradient(var(--cyan), var(--blue)); border-radius: 4px 4px 0 0; min-width: 6px; }
.gate-row { display: grid; grid-template-columns: 8px 1fr auto; align-items: center; gap: 5px; padding: 11px 0; border-bottom: 1px solid #fff; font-size: .55rem; }.gate-row i { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; }.gate-row i.ok { background: var(--green); }.gate-row b { color: var(--navy); }
.floating-badge { position: absolute; left: 0; bottom: 3px; width: 160px; min-height: 230px; background: #fff; border-radius: 16px; box-shadow: 0 25px 50px rgba(0,65,101,.22); padding: 14px; border-top: 5px solid var(--orange); transform: rotate(-5deg); display: flex; flex-direction: column; align-items: center; z-index: 3; }
.badge-head { width: 100%; display: flex; justify-content: space-between; align-items: center; font-size: .48rem; letter-spacing: .08em; color: rgba(0,65,101,.62); }.badge-head b { background: var(--orange); padding: 2px 6px; border-radius: 4px; color: #004165; }
.avatar { width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center; background: var(--cyan-soft); color: var(--blue); font-weight: 900; margin: 15px 0 8px; }
.floating-badge > strong { font-size: .7rem; }.floating-badge > small { font-size: .53rem; color: rgba(0,65,101,.62); }
.qr-grid { width: 53px; height: 53px; margin-top: 14px; display: grid; grid-template-columns: repeat(6,1fr); gap: 1px; }
.qr-grid i { background: var(--navy); }.qr-grid i:nth-child(3n), .qr-grid i:nth-child(5n) { background: transparent; }
.floating-scan { position: absolute; right: -10px; bottom: 45px; background: #fff; box-shadow: var(--shadow-sm); border-radius: 12px; padding: 11px 14px; display: flex; align-items: center; gap: 10px; z-index: 4; border-left: 4px solid var(--green); }.floating-scan svg { color: var(--green); }.floating-scan div { display: flex; flex-direction: column; }.floating-scan strong { font-size: .68rem; }.floating-scan small { font-size: .55rem; color: #075482; }
.trust-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.trust-inner { min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 25px; flex-wrap: wrap; }
.trust-inner span { color: var(--muted); font-size: .82rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 800; }.trust-inner b { color: #075482; font-size: .88rem; }

.problems { background: var(--navy); }
.problems .section-heading h2, .problems .section-heading p { color: #fff; }.problems .section-heading p { color: rgba(0,65,101,.32); }
.split-heading { display: grid; grid-template-columns: .95fr 1.05fr; gap: 85px; align-items: start; }
.problem-list { border-top: 1px solid rgba(255,255,255,.12); }
.problem-list div { display: grid; grid-template-columns: 52px 1fr; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.12); align-items: center; }
.problem-list span { color: var(--orange); font-weight: 900; font-size: .78rem; }.problem-list p { color: rgba(36,180,213,.1); margin: 0; font-weight: 650; }
.modules-section { background: var(--soft); }
.module-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.module-card { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 30px; position: relative; min-height: 285px; display: flex; flex-direction: column; transition: transform .25s ease, box-shadow .25s ease, border .25s ease; overflow: hidden; }
.module-card::after { content: ""; position: absolute; right: -45px; bottom: -45px; width: 110px; height: 110px; border: 1px solid rgba(36,180,213,.15); border-radius: 50%; }
.module-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-sm); border-color: rgba(36,180,213,.1); }
.module-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--cyan-soft); color: var(--blue); display: grid; place-items: center; margin-bottom: 24px; }
.module-card:nth-child(2n) .module-icon { background: #fff; color: var(--orange-dark); }.module-card:nth-child(3n) .module-icon { background: var(--green-soft); color: var(--green); }
.module-card h3 { font-size: 1.38rem; }.module-card p { font-size: .94rem; }.module-card a { margin-top: auto; display: inline-flex; gap: 7px; align-items: center; color: var(--blue); font-weight: 800; font-size: .88rem; }
.process-section { overflow: hidden; }
.process-line { display: grid; grid-template-columns: repeat(7,1fr); position: relative; gap: 10px; }
.process-line::before { content: ""; position: absolute; top: 50px; left: 5%; right: 5%; height: 1px; background: var(--line); }
.process-step { position: relative; text-align: center; padding: 0 7px; }
.process-step > span { position: absolute; top: 0; left: 8px; color: rgba(0,65,101,.32); font-size: .68rem; font-weight: 900; }
.process-icon { width: 58px; height: 58px; border: 1px solid var(--line); border-radius: 50%; background: #fff; color: var(--blue); display: grid; place-items: center; margin: 21px auto 20px; position: relative; z-index: 2; box-shadow: 0 7px 16px rgba(0,65,101,.06); }
.process-step h3 { font-size: 1rem; }.process-step p { font-size: .78rem; line-height: 1.5; }
.outcomes-section { background: linear-gradient(135deg,#fff,#fff); }
.outcome-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: center; }
.outcome-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.outcome-cards > div { background: rgba(255,255,255,.8); border: 1px solid var(--line); border-radius: 16px; padding: 25px; backdrop-filter: blur(10px); }
.outcome-cards svg { color: var(--blue); width: 30px; height: 30px; margin-bottom: 16px; }.outcome-cards h3 { font-size: 1.14rem; }.outcome-cards p { margin: 0; font-size: .88rem; }
.industry-grid { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.industry-grid article { padding: 35px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); min-height: 220px; transition: background .2s ease; }.industry-grid article:hover { background: var(--soft); }.industry-grid span { color: var(--orange); font-weight: 900; font-size: .75rem; }.industry-grid h3 { margin-top: 35px; }.industry-grid p { font-size: .9rem; }
.center-cta { text-align: center; margin-top: 40px; }
.onsite-section { background: var(--soft); }
.onsite-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }
.onsite-visual { min-height: 460px; position: relative; background: linear-gradient(145deg,#fff,#fff); border-radius: 28px; overflow: hidden; border: 1px solid rgba(36,180,213,.1); }
.onsite-visual::after { content: ""; width: 390px; height: 150px; position: absolute; bottom: -60px; left: 50%; transform: translateX(-50%); border-radius: 50%; background: rgba(7,84,130,.11); filter: blur(12px); }
.device { position: absolute; background: #fff; border: 7px solid var(--navy); box-shadow: 0 20px 40px rgba(0,65,101,.18); z-index: 2; }
.phone { width: 150px; height: 285px; border-radius: 25px; left: 42px; top: 70px; padding: 25px 14px; }.phone-top { width: 48px; height: 5px; background: var(--navy); border-radius: 5px; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); }.scan-frame { height: 118px; margin-top: 25px; border: 2px solid var(--cyan); position: relative; background: repeating-linear-gradient(45deg,#fff,#fff 6px,#fff 6px,#fff 12px); }.scan-frame::after { content: ""; position: absolute; left: 8px; right: 8px; top: 50%; height: 2px; background: var(--orange); box-shadow: 0 0 8px var(--orange); }.scan-status { background: var(--green-soft); color: var(--green); border-radius: 8px; padding: 9px; font-weight: 850; font-size: .72rem; margin-top: 25px; text-align: center; }
.kiosk { width: 180px; height: 225px; border-radius: 13px; right: 45px; top: 55px; padding: 15px; }.kiosk-screen { background: var(--soft); border-radius: 7px; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; font-size: .82rem; font-weight: 850; color: var(--navy); }.mini-qr { margin-top: 17px; width: 60px; height: 60px; background: conic-gradient(from 90deg,var(--navy) 25%,transparent 0 50%,var(--navy) 0 75%,transparent 0); background-size: 15px 15px; }.kiosk-stand { position: absolute; width: 18px; height: 80px; background: var(--navy); left: 50%; bottom: -80px; transform: translateX(-50%); }.kiosk-stand::after { content: ""; position: absolute; width: 110px; height: 13px; background: var(--navy); bottom: -10px; left: 50%; transform: translateX(-50%); border-radius: 20px; }
.printer { width: 180px; height: 115px; background: var(--navy); border-radius: 13px; position: absolute; right: 75px; bottom: 36px; z-index: 4; box-shadow: 0 20px 30px rgba(0,65,101,.2); }.print-slot { position: absolute; top: 18px; left: 25px; right: 25px; height: 9px; background: #004165; border-radius: 8px; }.printed-pass { position: absolute; top: 26px; left: 45px; width: 90px; height: 105px; background: #fff; border-top: 5px solid var(--orange); box-shadow: 0 7px 15px rgba(0,0,0,.15); display: flex; flex-direction: column; align-items: center; padding-top: 20px; }.printed-pass b { font-size: .65rem; }.printed-pass span { font-size: .48rem; color: rgba(0,65,101,.62); }
.check-list { list-style: none; padding: 0; margin: 25px 0 32px; display: grid; gap: 14px; }.check-list li { display: flex; gap: 10px; align-items: flex-start; color: #075482; font-weight: 650; }.check-list svg { color: var(--green); margin-top: 2px; }
.command-section { background: var(--navy); color: #fff; }
.command-section h2, .command-section h3 { color: #fff; }.command-section p { color: rgba(0,65,101,.32); }.command-section .eyebrow { color: #18B9DB; }
.command-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.command-points { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }.command-points div { border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.04); border-radius: 12px; padding: 18px; display: flex; flex-direction: column; }.command-points span { color: var(--cyan); font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 850; }.command-points b { color: #fff; font-size: .87rem; margin-top: 5px; }
.command-map { height: 420px; background: #004165; border-radius: 23px; position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,.12); }.map-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.06) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.06) 1px,transparent 1px); background-size: 50px 50px; transform: perspective(700px) rotateX(57deg) scale(1.7); transform-origin: bottom; }.map-pin { position: absolute; width: 46px; height: 46px; border: 5px solid rgba(255,255,255,.2); background: var(--cyan); color: var(--navy); border-radius: 50% 50% 50% 0; transform: rotate(-45deg); display: grid; place-items: center; font-weight: 900; font-size: .62rem; box-shadow: 0 10px 25px rgba(0,0,0,.3); }.map-pin::after { content: attr(class); }.map-pin { font-size: 0; }.map-pin::before { content: "•"; font-size: 24px; transform: rotate(45deg); }.map-pin.p2,.map-pin.p4 { background: var(--orange); }.p1 { left: 20%; top: 23%; }.p2 { left: 63%; top: 18%; }.p3 { left: 46%; top: 58%; }.p4 { left: 76%; top: 66%; }.map-legend { position: absolute; left: 20px; bottom: 18px; padding: 9px 12px; border-radius: 8px; background: rgba(0,65,101,.7); color: rgba(36,180,213,.1); font-size: .72rem; }.map-legend i { width: 8px; height: 8px; background: var(--cyan); border-radius: 50%; display: inline-block; margin-right: 6px; }
.integrations { background: #fff; }.integration-row { display: grid; grid-template-columns: repeat(8,1fr); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }.integration-row span { display: grid; place-items: center; min-height: 95px; font-size: .76rem; font-weight: 850; color: #075482; border-right: 1px solid var(--line); background: linear-gradient(#fff,#fff); text-align: center; padding: 12px; }.integration-row span:last-child { border-right: 0; }
.faq-section { background: var(--soft); }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; align-items: start; }
.faq-list details { border-top: 1px solid var(--line); }.faq-list details:last-child { border-bottom: 1px solid var(--line); }.faq-list summary { list-style: none; cursor: pointer; padding: 22px 0; color: var(--navy); font-weight: 800; display: flex; justify-content: space-between; gap: 20px; }.faq-list summary::-webkit-details-marker { display:none; }.faq-list summary span { color: var(--blue); font-size: 1.35rem; transition: transform .2s; }.faq-list details[open] summary span { transform: rotate(45deg); }.faq-list details p { padding-right: 40px; padding-bottom: 20px; margin: 0; font-size: .94rem; }
.final-cta { padding-top: 50px; }.cta-panel { background: linear-gradient(125deg,var(--blue),var(--navy)); color: #fff; border-radius: 25px; padding: 55px 60px; display: flex; align-items: center; justify-content: space-between; gap: 55px; position: relative; overflow: hidden; }.cta-panel::after { content: ""; position: absolute; width: 350px; height: 350px; border-radius: 50%; border: 1px solid rgba(255,255,255,.13); right: -140px; top: -150px; box-shadow: 0 0 0 55px rgba(255,255,255,.035); }.cta-panel h2 { color: #fff; font-size: clamp(1.8rem,3vw,3rem); max-width: 760px; margin-bottom: 10px; }.cta-panel p { color: rgba(36,180,213,.1); margin-bottom: 0; }.cta-panel .eyebrow { color: #18B9DB; }.cta-buttons { display: flex; gap: 10px; flex-shrink: 0; position: relative; z-index: 2; }

.page-hero { background: radial-gradient(circle at 80% 35%,rgba(36,180,213,.16),transparent 27%),linear-gradient(135deg,#fff,#fff); border-bottom: 1px solid var(--line); overflow: hidden; }
.page-hero-grid { min-height: 560px; display: grid; grid-template-columns: 1.08fr .92fr; gap: 70px; align-items: center; padding-top: 80px; padding-bottom: 80px; }.page-hero h1 { font-size: clamp(2.8rem,4.7vw,4.75rem); }.page-hero p { max-width: 720px; font-size: 1.1rem; }.breadcrumb { display: flex; gap: 9px; color: #075482; font-size: .78rem; margin-bottom: 30px; }.breadcrumb a:hover { color: var(--blue); }
.solution-visual { min-height: 390px; display: grid; place-items: center; position: relative; }.visual-orbit { width: 300px; height: 300px; border: 1px solid rgba(7,84,130,.16); border-radius: 50%; display: grid; place-items: center; position: relative; box-shadow: 0 0 0 50px rgba(7,84,130,.04),0 0 0 100px rgba(7,84,130,.025); }.orbit-center { width: 112px; height: 112px; border-radius: 30px; background: var(--navy); color: var(--cyan); display: grid; place-items: center; box-shadow: var(--shadow); }.orbit-center svg { width: 54px; height: 54px; }.orb { position: absolute; width: 19px; height: 19px; background: var(--orange); border: 5px solid #fff; border-radius: 50%; box-shadow: 0 4px 13px rgba(0,65,101,.2); }.o1 { top: 16px; left: 82px; }.o2 { right: 4px; top: 125px; background: var(--cyan); }.o3 { bottom: 7px; left: 120px; background: var(--green); }.o4 { left: 5px; top: 160px; background: var(--blue); }.visual-label { position: absolute; bottom: 5px; background: #fff; border: 1px solid var(--line); border-radius: 40px; padding: 10px 18px; color: var(--navy); font-weight: 800; font-size: .82rem; box-shadow: var(--shadow-sm); }
.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }.feature-card { border: 1px solid var(--line); border-radius: 17px; padding: 28px; min-height: 250px; background: #fff; }.feature-card p { font-size: .92rem; }.feature-card:nth-child(2n) { background: var(--soft); }
.process-detail { background: var(--soft); }.split-content { display: grid; grid-template-columns: 1.15fr .85fr; gap: 80px; align-items: start; }.number-list { padding: 0; list-style: none; margin: 0; }.number-list li { display: grid; grid-template-columns: 52px 1fr; gap: 20px; border-top: 1px solid var(--line); padding: 22px 0; }.number-list li:last-child { border-bottom: 1px solid var(--line); }.number-list li > span { color: var(--orange); font-size: .76rem; font-weight: 900; }.number-list h3 { margin-bottom: 7px; }.number-list p { margin: 0; font-size: .93rem; }.info-panel { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 35px; box-shadow: var(--shadow-sm); position: sticky; top: 115px; }.info-panel hr { border: 0; border-top: 1px solid var(--line); margin: 30px 0; }.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }.tag-cloud span { padding: 8px 11px; border-radius: 8px; background: var(--soft); color: #075482; font-size: .78rem; font-weight: 750; }
.security-band { background: var(--blue); }.security-grid { display: grid; grid-template-columns: 85px 1fr auto; gap: 35px; align-items: center; }.security-icon { width: 75px; height: 75px; border-radius: 20px; display: grid; place-items: center; background: rgba(255,255,255,.13); color: #fff; }.security-icon svg { width: 40px; height: 40px; }.security-grid h2 { color: #fff; font-size: clamp(1.65rem,2.8vw,2.7rem); }.security-grid p { color: rgba(36,180,213,.1); margin-bottom: 0; }.security-grid .eyebrow { color: #18B9DB; }.proposal-card { background: #fff; border: 1px solid var(--line); padding: 35px; border-radius: 20px; box-shadow: var(--shadow-sm); }

.platform-stack { position: relative; height: 390px; display: grid; place-items: center; perspective: 900px; }.layer { position: absolute; width: 78%; height: 85px; border-radius: 14px; display: grid; place-items: center; font-weight: 900; color: #fff; box-shadow: 0 20px 35px rgba(0,65,101,.16); transform: rotateX(58deg) rotateZ(-12deg); }.l1 { top: 35px; background: var(--cyan); }.l2 { top: 105px; background: var(--blue); }.l3 { top: 175px; background: #075482; }.l4 { top: 245px; background: var(--navy); }
.architecture-section { background: var(--soft); }.architecture-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; }.data-core { min-height: 510px; position: relative; display: grid; place-items: center; }.core-ring { position: absolute; border: 1px solid rgba(36,180,213,.1); border-radius: 50%; }.r1 { width: 285px; height: 285px; }.r2 { width: 440px; height: 440px; border-style: dashed; }.core-center { width: 150px; height: 150px; border-radius: 50%; display: grid; place-items: center; text-align: center; background: var(--navy); color: rgba(0,65,101,.32); box-shadow: var(--shadow); font-size: .65rem; letter-spacing: .1em; }.core-center strong { color: var(--cyan); font-size: 1rem; }.core-node { position: absolute; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); padding: 10px 15px; border-radius: 30px; color: var(--navy); font-size: .75rem; font-weight: 850; }.n1 { top: 20px; }.n2 { right: 15px; top: 120px; }.n3 { right: 25px; bottom: 100px; }.n4 { bottom: 15px; }.n5 { left: 25px; bottom: 100px; }.n6 { left: 15px; top: 120px; }
.deployment-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }.deployment-grid article { padding: 32px; border: 1px solid rgba(255,255,255,.15); border-radius: 18px; min-height: 265px; position: relative; }.deployment-grid article.featured { background: #fff; }.deployment-grid article.featured h3,.deployment-grid article.featured p { color: var(--navy); }.deployment-grid article > span { color: var(--orange); font-weight: 900; }.deployment-grid h3 { margin-top: 45px; }.deployment-grid article b { position: absolute; top: 22px; right: 22px; background: var(--orange); color: var(--navy); font-size: .67rem; padding: 5px 9px; border-radius: 20px; }
.industry-orbit { width: 420px; height: 420px; border-radius: 50%; position: relative; display: grid; place-items: center; border: 1px solid rgba(7,84,130,.2); margin: auto; }.industry-orbit::before { content: ""; position: absolute; width: 260px; height: 260px; border-radius: 50%; border: 1px dashed rgba(7,84,130,.3); }.industry-orbit strong { width: 130px; height: 130px; border-radius: 50%; background: var(--navy); color: #fff; display: grid; place-items: center; text-align: center; font-size: .8rem; letter-spacing: .08em; }.industry-orbit span { position: absolute; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); color: var(--blue); padding: 8px 13px; border-radius: 30px; font-size: .72rem; font-weight: 850; }.io1 { top: 8px; }.io2 { right: -12px; top: 105px; }.io3 { right: 8px; bottom: 55px; }.io4 { bottom: 5px; }.io5 { left: -8px; bottom: 60px; }.io6 { left: -12px; top: 105px; }
.industry-detail-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }.industry-detail-grid article { border: 1px solid var(--line); border-radius: 20px; padding: 35px; position: relative; background: #fff; }.industry-detail-grid article > span { position: absolute; right: 25px; top: 22px; color: rgba(0,65,101,.32); font-size: .75rem; font-weight: 900; }.industry-detail-grid ul { padding-left: 18px; color: var(--muted); }.industry-detail-grid a { color: var(--blue); display: inline-flex; align-items: center; gap: 8px; font-weight: 850; }.city-cloud { display: flex; flex-wrap: wrap; gap: 10px; }.city-cloud span { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 10px 13px; display: flex; align-items: center; gap: 7px; color: #075482; font-size: .84rem; font-weight: 750; }
.about-symbol { width: 380px; height: 380px; position: relative; display: grid; place-items: center; margin: auto; }.about-symbol::before,.about-symbol::after { content: ""; position: absolute; border-radius: 30px; transform: rotate(45deg); }.about-symbol::before { width: 250px; height: 250px; background: var(--navy); }.about-symbol::after { width: 320px; height: 320px; border: 1px solid rgba(7,84,130,.22); }.about-symbol b { position: relative; z-index: 2; color: #fff; font-size: 1.45rem; line-height: 1.55; letter-spacing: .04em; }.about-symbol span { position: absolute; width: 44px; height: 44px; border-radius: 12px; z-index: 3; }.about-symbol span:nth-child(1) { background: var(--orange); top: 22px; right: 30px; }.about-symbol span:nth-child(2) { background: var(--cyan); left: 15px; bottom: 85px; }.about-symbol span:nth-child(3) { background: var(--green); right: 20px; bottom: 45px; }.large-copy { font-size: 1.25rem; line-height: 1.8; color: #075482; }.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }.values-grid article { padding: 25px; border: 1px solid var(--line); border-radius: 15px; }.values-grid span { color: var(--orange); font-size: .7rem; font-weight: 900; }.values-grid h3 { margin-top: 22px; }.values-grid p { font-size: .88rem; margin: 0; }.about-flow { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 13px; }.about-flow span { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.13); padding: 12px 16px; border-radius: 9px; color: #fff; font-weight: 800; }.about-flow svg { color: var(--cyan); }

.contact-benefits { display: grid; gap: 10px; margin-top: 30px; }.contact-benefits span { display: flex; align-items: center; gap: 9px; font-weight: 750; color: #075482; }.contact-benefits svg { color: var(--green); }.contact-card { background: var(--navy); color: #fff; border-radius: 22px; padding: 38px; box-shadow: var(--shadow); }.contact-card h2 { color: #fff; font-size: 1.75rem; }.contact-card > div { display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.12); padding: 16px 0; }.contact-card > div span { color: rgba(0,65,101,.32); font-size: .83rem; }.contact-card > div b { font-size: .85rem; text-align: right; }.form-section { background: var(--soft); }.form-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; align-items: start; }.lead-process { display: grid; gap: 20px; margin-top: 40px; }.lead-process div { display: grid; grid-template-columns: 42px 1fr; gap: 13px; }.lead-process span { width: 36px; height: 36px; background: var(--cyan-soft); color: var(--blue); border-radius: 50%; display: grid; place-items: center; font-weight: 900; font-size: .75rem; }.lead-process p { font-size: .9rem; }.lead-form { background: #fff; border: 1px solid var(--line); border-radius: 23px; padding: 36px; box-shadow: var(--shadow-sm); position: relative; }.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }.lead-form label { display: flex; flex-direction: column; gap: 7px; margin-bottom: 17px; }.lead-form label > span,.lead-form legend { color: var(--navy); font-weight: 800; font-size: .82rem; }.lead-form input,.lead-form select,.lead-form textarea { width: 100%; border: 1px solid rgba(36,180,213,.1); border-radius: 10px; background: #fff; color: var(--ink); padding: 12px 13px; outline: none; transition: border .2s, box-shadow .2s; }.lead-form input:focus,.lead-form select:focus,.lead-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(7,84,130,.1); }.lead-form [aria-invalid="true"] { border-color: #24B4D5; }.lead-form fieldset { border: 0; padding: 0; margin: 8px 0 23px; }.checkbox-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7px 15px; margin-top: 10px; }.checkbox-grid label { flex-direction: row; align-items: center; gap: 7px; color: #075482; font-size: .78rem; margin: 0; }.checkbox-grid input,.consent input { width: auto; accent-color: var(--blue); }.lead-form .consent { flex-direction: row; align-items: flex-start; gap: 9px; }.form-note { font-size: .7rem; margin: 12px 0 0; text-align: center; }.form-success { position: absolute; inset: 0; background: #fff; border-radius: 23px; z-index: 3; padding: 55px; text-align: center; display: grid; place-items: center; align-content: center; }.form-success[hidden] { display: none; }.form-success > div { width: 70px; height: 70px; border-radius: 50%; display: grid; place-items: center; background: var(--green-soft); color: var(--green); margin-bottom: 20px; }.form-success > div svg { width: 38px; height: 38px; }.form-success p { max-width: 500px; }
.legal-hero .container { padding-top: 100px; padding-bottom: 90px; }.legal-hero h1 { margin-bottom: 10px; }.legal-content { max-width: 850px; }.legal-content h2 { font-size: 1.5rem; margin-top: 42px; }.legal-notice { margin-top: 45px; background: #fff; border-left: 4px solid var(--orange); padding: 18px; border-radius: 8px; font-size: .86rem; color: #075482; }
.notfound { min-height: 70vh; display: grid; place-items: center; text-align: center; background: var(--soft); }.notfound span { font-size: clamp(6rem,20vw,14rem); color: rgba(36,180,213,.1); font-weight: 950; line-height: .8; }.notfound h1 { margin-top: 35px; }.notfound .hero-actions { justify-content: center; }

.site-footer { background: #004165; color: #fff; padding: 80px 0 20px; }.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.15fr; gap: 55px; }.brand-light .brand-copy strong { color: #fff; }.footer-brand p { color: rgba(0,65,101,.32); max-width: 430px; font-size: .9rem; margin-top: 24px; }.footer-status { color: rgba(0,65,101,.32); font-size: .74rem; margin-top: 22px; display: flex; gap: 8px; align-items: center; }.footer-status span { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); }.site-footer h3 { color: #fff; font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 21px; }.site-footer a { display: block; color: rgba(0,65,101,.32); font-size: .84rem; margin-bottom: 10px; }.site-footer a:hover { color: #fff; }.site-footer p { color: rgba(0,65,101,.32); font-size: .78rem; margin-bottom: 10px; }.site-footer p strong { color: rgba(36,180,213,.1); }.footer-bottom { margin-top: 55px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 20px; color: #075482; font-size: .72rem; }.footer-bottom span:last-child { display: flex; gap: 18px; }.footer-bottom a { display: inline; margin: 0; font-size: inherit; }
.floating-cta { position: fixed; right: 22px; bottom: 22px; z-index: 90; display: flex; align-items: center; gap: 10px; background: var(--green); color: #fff; padding: 13px 17px; border-radius: 40px; box-shadow: 0 14px 30px rgba(7,84,130,.28); font-weight: 800; font-size: .78rem; }.floating-cta:hover { transform: translateY(-2px); }.mobile-bottom-bar { display: none; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }.reveal.visible { opacity: 1; transform: translateY(0); }.delay-1 { transition-delay: .12s; }
@media (prefers-reduced-motion: reduce) { *,*::before,*::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; } .reveal { opacity: 1; transform: none; } }

@media (max-width: 1120px) {
  .desktop-nav { display: none; }.header-actions { margin-left: auto; }.menu-toggle { display: block; }.mobile-panel { position: fixed; display: block; left: 0; right: 0; top: 120px; bottom: 0; background: #fff; opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .2s ease; overflow-y: auto; }.mobile-panel.open { opacity: 1; visibility: visible; transform: translateY(0); }.mobile-panel-inner { padding-top: 24px; padding-bottom: 60px; display: grid; }.mobile-panel a { padding: 15px 0; border-bottom: 1px solid var(--line); color: var(--navy); font-weight: 800; }.mobile-solutions { display: grid; }.mobile-solutions > span { color: var(--blue); font-size: .7rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 900; padding: 10px 0; }.mobile-solutions a { padding-left: 15px; font-size: .92rem; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 70px; }.hero-copy { max-width: 800px; }.hero-visual { width: min(780px,100%); margin: 0 auto; min-height: 560px; }.dashboard-window { width: 90%; }
  .process-line { grid-template-columns: repeat(4,1fr); row-gap: 45px; }.process-line::before { display:none; }
  .integration-row { grid-template-columns: repeat(4,1fr); }.integration-row span { border-bottom: 1px solid var(--line); }
  .page-hero-grid { grid-template-columns: 1fr; }.solution-visual,.platform-stack,.industry-orbit,.about-symbol { margin-inline: auto; }.page-hero-grid > div:first-child { max-width: 850px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }.footer-grid > div:last-child { grid-column: 2 / 4; }
}

@media (max-width: 820px) {
  .section { padding: 82px 0; }.announcement-inner { justify-content: flex-start; overflow: hidden; white-space: nowrap; }.announcement-inner span { display:none; }
  .header-inner { min-height: 72px; }.header-actions .btn-ghost { display:none; }.mobile-panel { top: 110px; }
  .module-grid,.feature-grid { grid-template-columns: 1fr 1fr; }.process-line { grid-template-columns: repeat(2,1fr); }.split-heading,.outcome-grid,.onsite-grid,.command-grid,.faq-grid,.split-content,.architecture-grid,.form-layout { grid-template-columns: 1fr; gap: 55px; }.industry-grid { grid-template-columns: 1fr 1fr; }.onsite-visual { order: 2; }.info-panel { position: static; }.security-grid { grid-template-columns: 70px 1fr; }.security-grid .btn { grid-column: 1 / -1; width: fit-content; }.industry-detail-grid { grid-template-columns: 1fr; }.deployment-grid { grid-template-columns: 1fr; }.footer-grid { grid-template-columns: 1fr 1fr; }.footer-grid > div:last-child { grid-column: auto; }.final-cta { padding-top: 0; }.cta-panel { flex-direction: column; align-items: flex-start; padding: 43px; }.cta-buttons { flex-wrap: wrap; }.form-layout > div:first-child { max-width: 700px; }.floating-cta { bottom: 82px; }
}

@media (max-width: 560px) {
  body { padding-bottom: 62px; }.container { width: min(calc(100% - 32px),var(--container)); }.section { padding: 68px 0; }
  .announcement { display:none; }.site-header { top:0; }.header-inner { min-height: 68px; }.brand-mark { width: 36px; height: 36px; }.brand-copy strong { font-size: .87rem; }.brand-copy small { font-size: .52rem; }.header-actions { display:none; }.mobile-panel { top: 68px; }
  h1 { font-size: clamp(2.45rem,12vw,3.65rem); }.hero-grid { padding-top: 55px; padding-bottom: 55px; min-height:auto; }.hero-actions { flex-direction: column; }.hero-actions .btn { width: 100%; }.hero-proof { display:grid;gap:8px; }.hero-visual { min-height: 410px; }.dashboard-window { width: 100%; top:20px; transform:none; }.dash-body { grid-template-columns: 35px 1fr; min-height: 285px; }.dash-side { gap:14px; }.dash-side b { width:22px;height:22px; }.dash-content { padding: 12px; }.dash-stats { gap:5px; }.dash-stats > div { padding:8px; }.dash-panels { grid-template-columns:1fr; }.gate-card { display:none; }.chart-card { min-height:120px; }.floating-badge { width: 125px; min-height: 185px; padding:10px; bottom:-8px; }.avatar { width:38px;height:38px;margin:10px 0 5px; }.qr-grid { width:42px;height:42px;margin-top:8px; }.floating-scan { right:0; bottom:20px; }.trust-inner { justify-content:flex-start; min-height:75px; gap:15px; }.trust-inner span { width:100%; margin-top:15px; }.trust-inner b { font-size:.73rem; }
  .module-grid,.feature-grid,.outcome-cards { grid-template-columns:1fr; }.module-card { min-height:240px; }.process-line { grid-template-columns:1fr 1fr; }.process-step p { display:none; }.industry-grid { grid-template-columns:1fr; }.onsite-visual { min-height:400px; }.phone { left:18px;transform:scale(.82);transform-origin:left center; }.kiosk { right:15px;transform:scale(.82);transform-origin:right top; }.printer { right:30px;bottom:42px;transform:scale(.82);transform-origin:right bottom; }.command-points { grid-template-columns:1fr; }.command-map { height:320px; }.integration-row { grid-template-columns:1fr 1fr; }.section-heading { margin-bottom:35px; }.faq-list summary { font-size:.92rem; }.cta-panel { border-radius:18px;padding:34px 25px; }.cta-buttons { width:100%; }.cta-buttons .btn { width:100%; }.page-hero-grid { padding-top:60px;padding-bottom:60px;min-height:auto; }.page-hero h1 { font-size:clamp(2.45rem,11vw,3.5rem); }.solution-visual { min-height:320px; }.visual-orbit { width:230px;height:230px; }.orbit-center { width:90px;height:90px; }.visual-orbit { box-shadow:0 0 0 35px rgba(7,84,130,.04),0 0 0 70px rgba(7,84,130,.025); }.industry-orbit { width:290px;height:290px; }.industry-orbit::before { width:190px;height:190px; }.industry-orbit strong { width:105px;height:105px; }.industry-orbit span { font-size:.58rem;padding:6px 8px; }.about-symbol { width:290px;height:290px; }.about-symbol::before { width:190px;height:190px; }.about-symbol::after { width:240px;height:240px; }.about-symbol b { font-size:1.12rem; }.values-grid { grid-template-columns:1fr; }.about-flow { justify-content:flex-start; }.about-flow svg { transform:rotate(90deg); }.security-grid { grid-template-columns:1fr; }.security-icon { width:60px;height:60px; }.architecture-grid { gap:40px; }.data-core { min-height:390px;transform:scale(.78);margin:-35px; }.platform-stack { height:320px; }.layer { width:90%; }.form-grid,.checkbox-grid { grid-template-columns:1fr; }.lead-form { padding:23px 18px; }.contact-card { padding:28px 22px; }.contact-card > div { flex-direction:column;gap:4px; }.contact-card > div b { text-align:left; }.footer-grid { grid-template-columns:1fr; }.footer-bottom { flex-direction:column; }.floating-cta { display:none; }.mobile-bottom-bar { position:fixed;z-index:95;bottom:0;left:0;right:0;height:62px;background:#fff;border-top:1px solid var(--line);display:grid;grid-template-columns:1fr 1fr;padding:8px;gap:8px;box-shadow:0 -10px 30px rgba(0,65,101,.12); }.mobile-bottom-bar a { display:grid;place-items:center;border-radius:8px;background:var(--orange);color:var(--navy);font-weight:900;font-size:.78rem; }.mobile-bottom-bar a:last-child { background:var(--green);color:#fff; }
}



/* Events By Isavgo Technologies — brand, accessibility and responsive revision. */
:root {
  --navy: #004165;
  --navy-2: #075482;
  --blue: #075482;
  --cyan: #24B4D5;
  --cyan-bright: #18B9DB;
  --cyan-soft: rgba(36,180,213,.12);
  --orange: #24B4D5;
  --orange-dark: #075482;
  --green: #075482;
  --green-soft: rgba(36,180,213,.12);
  --ink: #000000;
  --muted: rgba(0,0,0,.68);
  --line: rgba(0,65,101,.19);
  --soft: rgba(36,180,213,.08);
  --white: #FFFFFF;
}

/* Code-designed wordmark: no external company logo asset. */
.brand { display:inline-flex; align-items:center; gap:11px; min-width:246px; flex-shrink:0; }
.brand-symbol { width:43px; height:43px; border-radius:13px; background:var(--navy); position:relative; display:block; flex:0 0 auto; box-shadow:0 8px 20px rgba(0,65,101,.18); overflow:hidden; }
.brand-symbol > span { position:absolute; left:10px; height:5px; border-radius:5px; background:var(--cyan); }
.brand-symbol > span:nth-child(1) { top:10px; width:24px; }
.brand-symbol > span:nth-child(2) { top:19px; width:18px; }
.brand-symbol > span:nth-child(3) { top:28px; width:24px; }
.brand-symbol > i { position:absolute; width:7px; height:7px; border-radius:50%; right:7px; top:7px; background:#FFFFFF; }
.brand-wordmark { display:flex; flex-direction:column; line-height:1; }
.brand-wordmark strong { color:var(--cyan); font-size:.66rem; text-transform:uppercase; letter-spacing:.18em; margin-bottom:4px; }
.brand-wordmark b { color:var(--navy); font-size:1rem; letter-spacing:-.025em; white-space:nowrap; }
.brand-wordmark small { color:var(--blue); font-size:.52rem; font-weight:850; letter-spacing:.13em; text-transform:uppercase; margin-top:6px; }
.brand-light { min-width:0; width:fit-content; padding:0; border:0; background:transparent; }
.brand-light .brand-symbol { background:#FFFFFF; box-shadow:none; }
.brand-light .brand-symbol > span { background:var(--cyan); }
.brand-light .brand-symbol > i { background:var(--navy); }
.brand-light .brand-wordmark b { color:#FFFFFF; }
.brand-light .brand-wordmark strong,.brand-light .brand-wordmark small { color:var(--cyan); }

.announcement { background:var(--navy); color:#FFFFFF; }
.announcement-inner > span { color:rgba(255,255,255,.78); }
.announcement a { color:#FFFFFF; }
.site-header { border-bottom-color:rgba(0,65,101,.16); }
.menu-toggle { margin-left:auto; border:1px solid var(--line); border-radius:10px; background:#FFFFFF; min-width:44px; min-height:44px; display:none; place-items:center; }
.menu-toggle:hover { background:var(--soft); }

/* High-contrast module icon system across all pages. */
.module-icon { width:54px; height:54px; border-radius:14px; background:var(--navy); color:#FFFFFF; border:1px solid var(--navy); display:grid; place-items:center; }
.module-icon .icon { width:27px; height:27px; stroke-width:2; }
.module-card:nth-child(4n+2) .module-icon,.feature-card:nth-child(4n+2) .module-icon,.industry-detail-grid article:nth-child(4n+2) .module-icon,.blog-card:nth-child(4n+2) .module-icon,.price-card:nth-child(4n+2) .module-icon { background:var(--cyan); color:#000000; border-color:var(--cyan); }
.module-card:nth-child(4n+3) .module-icon,.feature-card:nth-child(4n+3) .module-icon,.industry-detail-grid article:nth-child(4n+3) .module-icon,.blog-card:nth-child(4n+3) .module-icon,.price-card:nth-child(4n+3) .module-icon { background:var(--blue); color:#FFFFFF; border-color:var(--blue); }
.module-card:nth-child(4n+4) .module-icon,.feature-card:nth-child(4n+4) .module-icon,.industry-detail-grid article:nth-child(4n+4) .module-icon,.blog-card:nth-child(4n+4) .module-icon,.price-card:nth-child(4n+4) .module-icon { background:#FFFFFF; color:var(--navy); border-color:var(--cyan); }
.module-card,.feature-card,.industry-detail-grid article,.blog-card,.price-card { border-color:var(--line); }
.module-card:hover,.feature-card:hover,.blog-card:hover,.price-card:hover { border-color:var(--cyan); }

/* Process circles now contain clearly visible title-related icons. */
.process-icon { width:64px; height:64px; border:0; background:var(--navy); color:#FFFFFF; box-shadow:0 10px 24px rgba(0,65,101,.18); }
.process-icon .icon { width:28px; height:28px; stroke-width:2.1; }
.process-step:nth-child(4n+2) .process-icon { background:var(--cyan); color:#000000; }
.process-step:nth-child(4n+3) .process-icon { background:var(--blue); color:#FFFFFF; }
.process-step:nth-child(4n+4) .process-icon { background:#FFFFFF; color:var(--navy); border:2px solid var(--cyan); }
.process-step > span { color:var(--blue); }

/* Contrast corrections for dark panels and dashboards. */
.problems .section-heading p,.command-section p { color:rgba(255,255,255,.76); }
.problem-list div { border-bottom-color:rgba(255,255,255,.18); }
.problem-list span { color:var(--cyan); }
.problem-list p { color:#FFFFFF; }
.command-section .eyebrow { color:var(--cyan); }
.command-points span { color:#FFFFFF; }
.map-legend { background:rgba(0,0,0,.54); color:#FFFFFF; }
.contact-card .eyebrow { color:var(--cyan); }
.contact-card > div span { color:rgba(255,255,255,.72); }
.contact-card > div b,.contact-card > div a { color:#FFFFFF; }
.contact-card > div a:hover { color:var(--cyan); }
.core-center { color:rgba(255,255,255,.72); }
.dash-side i { background:rgba(255,255,255,.25); }
.dash-side i.active { background:var(--cyan); }
.dash-stats > div,.chart-card,.gate-card { border-color:var(--line); }
.dash-top { border-bottom-color:var(--line); }

/* Clear platform layer presentation; removes overlap and merged text. */
.platform-stack { height:auto; min-height:390px; display:grid; align-content:center; gap:14px; perspective:none; padding:24px; }
.layer { position:relative; inset:auto; width:100%; height:auto; min-height:72px; transform:none; display:flex; align-items:center; justify-content:flex-start; gap:16px; padding:17px 22px; border-radius:14px; font-size:1rem; line-height:1.3; letter-spacing:-.01em; box-shadow:0 13px 28px rgba(0,65,101,.15); }
.layer b { width:38px; height:38px; flex:0 0 auto; border-radius:10px; display:grid; place-items:center; background:rgba(255,255,255,.17); color:inherit; font-size:.72rem; }
.l1 { background:var(--cyan); color:#000000; }
.l1 b { background:rgba(255,255,255,.62); }
.l2 { background:var(--blue); color:#FFFFFF; }
.l3 { background:var(--navy-2); color:#FFFFFF; }
.l4 { background:var(--navy); color:#FFFFFF; }

/* Footer contrast and one-line copyright. */
.site-footer { background:var(--navy); color:#FFFFFF; }
.footer-brand p,.footer-status,.site-footer p { color:rgba(255,255,255,.76); }
.footer-status span { background:var(--cyan); }
.site-footer h3 { color:#FFFFFF; }
.site-footer a { color:rgba(255,255,255,.82); }
.site-footer a:hover { color:var(--cyan); }
.site-footer p strong { color:#FFFFFF; }
.footer-contact p { line-height:1.45; margin-bottom:15px; }
.footer-contact a { display:inline; color:#FFFFFF; font-weight:800; }
.footer-bottom { color:rgba(255,255,255,.78); align-items:center; }
.footer-copyright { white-space:nowrap; }
.footer-copyright a { color:#FFFFFF; font-weight:850; text-decoration:underline; text-decoration-color:var(--cyan); text-underline-offset:3px; }
.footer-legal { display:flex; gap:18px; }
.footer-legal a { color:rgba(255,255,255,.78); }

/* Off-canvas mobile menu inspired by the supplied reference. */
.mobile-overlay,.mobile-panel { display:none; }
.mobile-panel-head { display:flex; align-items:center; justify-content:space-between; gap:15px; padding:14px 18px; border-bottom:1px solid var(--line); background:#FFFFFF; position:sticky; top:0; z-index:2; }
.mobile-close { width:40px; height:40px; display:grid; place-items:center; border:1px solid var(--line); border-radius:10px; background:#FFFFFF; color:var(--navy); }
.mobile-menu { display:grid; }
.mobile-menu > a,.mobile-products > summary { min-height:52px; display:flex; align-items:center; justify-content:space-between; padding:13px 22px; border-bottom:1px solid var(--line); color:var(--navy); font-weight:850; font-size:.9rem; cursor:pointer; list-style:none; }
.mobile-products > summary::-webkit-details-marker { display:none; }
.mobile-products > summary svg { transition:transform .2s ease; }
.mobile-products[open] > summary svg { transform:rotate(180deg); }
.mobile-products > div { background:var(--soft); }
.mobile-products > div a { display:block; padding:11px 22px 11px 34px; color:var(--blue); border-bottom:1px solid rgba(0,65,101,.1); font-size:.82rem; font-weight:750; }
.mobile-contact,.mobile-follow { padding:20px 22px 4px; }
.mobile-menu-label { display:block; color:var(--cyan-bright); font-size:.63rem; font-weight:950; letter-spacing:.16em; text-transform:uppercase; margin-bottom:12px; }
.mobile-contact a,.mobile-contact p { display:flex; align-items:flex-start; gap:10px; margin:0 0 12px; color:var(--blue); font-size:.78rem; line-height:1.45; }
.mobile-contact svg { color:var(--cyan-bright); margin-top:2px; }
.mobile-socials { display:flex; gap:9px; }
.mobile-socials a { width:34px; height:34px; display:grid; place-items:center; border-radius:50%; background:var(--soft); color:var(--navy); border:1px solid var(--line); }
.mobile-menu-card { margin:18px 22px 24px; padding:14px; border-radius:12px; background:rgba(36,180,213,.1); border:1px solid rgba(36,180,213,.5); display:grid; grid-template-columns:30px 1fr 30px; align-items:center; gap:10px; color:var(--navy); }
.mobile-menu-card > svg { color:var(--cyan-bright); }
.mobile-menu-card div { display:flex; flex-direction:column; line-height:1.35; }
.mobile-menu-card strong { font-size:.76rem; }
.mobile-menu-card span { font-size:.64rem; color:var(--muted); margin-top:3px; }
.mobile-menu-card > a { width:30px; height:30px; display:grid; place-items:center; border-radius:50%; background:var(--navy); color:#FFFFFF; }
.mobile-brand { min-width:0; gap:8px; }
.mobile-brand .brand-symbol { width:36px; height:36px; border-radius:10px; }
.mobile-brand .brand-symbol > span { left:8px; height:4px; }
.mobile-brand .brand-symbol > span:nth-child(1) { top:8px; width:20px; }
.mobile-brand .brand-symbol > span:nth-child(2) { top:16px; width:15px; }
.mobile-brand .brand-symbol > span:nth-child(3) { top:24px; width:20px; }
.mobile-brand .brand-symbol > i { width:6px; height:6px; right:5px; top:5px; }
.mobile-brand .brand-wordmark strong { font-size:.52rem; }
.mobile-brand .brand-wordmark b { font-size:.78rem; }
.mobile-brand .brand-wordmark small { display:none; }

/* New pricing and content pages. */
.soft-section { background:var(--soft); }
.pricing-visual { min-height:390px; display:grid; align-content:center; gap:14px; }
.pricing-visual > div { padding:22px; border-radius:15px; background:#FFFFFF; border:1px solid var(--line); box-shadow:var(--shadow-sm); display:grid; grid-template-columns:48px 1fr; gap:2px 14px; }
.pricing-visual span { grid-row:1 / span 2; width:48px; height:48px; border-radius:12px; display:grid; place-items:center; background:var(--navy); color:#FFFFFF; font-weight:900; }
.pricing-visual > div:nth-child(2) span { background:var(--cyan); color:#000000; }
.pricing-visual > div:nth-child(3) span { background:var(--blue); }
.pricing-visual strong { color:var(--navy); }
.pricing-visual small { color:var(--muted); }
.pricing-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.price-card { background:#FFFFFF; border:1px solid var(--line); border-radius:20px; padding:30px; display:flex; flex-direction:column; min-height:510px; transition:.22s ease; }
.price-card.featured { box-shadow:var(--shadow); transform:translateY(-8px); border-color:var(--cyan); }
.price-label,.blog-card > span { color:var(--blue); font-size:.68rem; font-weight:950; letter-spacing:.13em; text-transform:uppercase; margin-bottom:16px; }
.price-card ul { padding-left:20px; color:var(--muted); display:grid; gap:10px; margin:15px 0 28px; }
.price-card .btn { margin-top:auto; }
.factor-list { display:grid; gap:10px; }
.factor-list div { padding:18px 20px; border:1px solid var(--line); border-radius:13px; background:#FFFFFF; display:grid; grid-template-columns:145px 1fr; gap:15px; }
.factor-list b { color:var(--navy); }
.factor-list span { color:var(--muted); }
.blog-visual { min-height:360px; border-radius:28px; background:var(--navy); display:grid; place-items:center; align-content:center; color:#FFFFFF; box-shadow:var(--shadow); text-align:center; padding:35px; }
.blog-visual svg { width:76px; height:76px; color:var(--cyan); margin-bottom:22px; }
.blog-visual strong { font-size:1.45rem; }
.blog-visual span { color:rgba(255,255,255,.75); margin-top:8px; }
.blog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; }
.blog-card { border:1px solid var(--line); border-radius:18px; padding:28px; background:#FFFFFF; min-height:370px; display:flex; flex-direction:column; transition:.22s ease; }
.blog-card p { font-size:.9rem; }
.blog-card a { margin-top:auto; display:inline-flex; align-items:center; gap:7px; color:var(--blue); font-weight:850; font-size:.83rem; }

@media (max-width:1120px) {
  .desktop-nav { display:none; }
  .header-actions { margin-left:auto; }
  .menu-toggle { display:grid; }
  .mobile-overlay { display:block; position:fixed; inset:0; z-index:119; background:rgba(0,0,0,.56); opacity:0; visibility:hidden; pointer-events:none; transition:opacity .24s ease,visibility .24s ease; }
  .mobile-overlay.open { opacity:1; visibility:visible; pointer-events:auto; }
  .mobile-panel { display:block; position:fixed; inset:0 auto 0 0; width:min(88vw,360px); z-index:120; background:#FFFFFF; opacity:1; visibility:visible; transform:translateX(-105%); transition:transform .26s ease; overflow-y:auto; box-shadow:20px 0 50px rgba(0,0,0,.25); }
  .mobile-panel.open { transform:translateX(0); }
  .platform-stack { width:min(620px,100%); }
  .pricing-grid,.blog-grid { grid-template-columns:repeat(2,1fr); }
  .price-card.featured { transform:none; }
}

@media (max-width:820px) {
  .brand { min-width:215px; }
  .brand-wordmark b { font-size:.9rem; }
  .pricing-grid,.blog-grid { grid-template-columns:1fr; }
  .price-card { min-height:0; }
  .footer-bottom { flex-direction:column; align-items:flex-start; }
}

@media (max-width:560px) {
  .header-inner { min-height:68px; gap:10px; }
  .brand { min-width:0; gap:8px; }
  .header-inner > .brand .brand-symbol { width:36px; height:36px; border-radius:10px; }
  .header-inner > .brand .brand-symbol > span { left:8px; height:4px; }
  .header-inner > .brand .brand-symbol > span:nth-child(1) { top:8px; width:20px; }
  .header-inner > .brand .brand-symbol > span:nth-child(2) { top:16px; width:15px; }
  .header-inner > .brand .brand-symbol > span:nth-child(3) { top:24px; width:20px; }
  .header-inner > .brand .brand-symbol > i { width:6px; height:6px; right:5px; top:5px; }
  .header-inner > .brand .brand-wordmark strong { font-size:.5rem; }
  .header-inner > .brand .brand-wordmark b { font-size:.76rem; }
  .header-inner > .brand .brand-wordmark small { display:none; }
  .menu-toggle { min-width:40px; min-height:40px; padding:7px; }
  .mobile-panel { width:min(91vw,345px); }
  .mobile-bottom-bar a { background:var(--cyan); color:#000000; }
  .mobile-bottom-bar a:last-child { background:var(--blue); color:#FFFFFF; }
  .process-line { grid-template-columns:1fr 1fr; gap:32px 12px; }
  .process-step p { display:block; font-size:.72rem; }
  .process-icon { width:58px; height:58px; }
  .platform-stack { min-height:0; padding:10px 0; }
  .layer { min-height:64px; padding:14px 16px; font-size:.85rem; }
  .layer b { width:32px; height:32px; }
  .factor-list div { grid-template-columns:1fr; gap:4px; }
  .footer-bottom { align-items:center; text-align:center; gap:12px; }
  .footer-copyright { font-size:clamp(.5rem,2.45vw,.64rem); white-space:nowrap; }
  .footer-legal { justify-content:center; }
}

/* Keep the off-canvas menu anchored to the viewport rather than the sticky header. */
.site-header { -webkit-backdrop-filter: none; backdrop-filter: none; background: rgba(255,255,255,.98); }

/* ==========================================================
   V4 — Comprehensive contrast, legibility and UI refinement
   Palette: Isavgo navy/blue/cyan + black/white only
   ========================================================== */
:root {
  --text-strong: #000000;
  --text-body: rgba(0,0,0,.76);
  --text-subtle: rgba(0,0,0,.68);
  --surface: #FFFFFF;
  --surface-soft: rgba(36,180,213,.075);
  --surface-strong: rgba(36,180,213,.14);
  --dark-muted: rgba(255,255,255,.82);
  --dark-subtle: rgba(255,255,255,.72);
  --focus-ring: 0 0 0 4px rgba(36,180,213,.3);
}

html { color-scheme: light; }
body { color: var(--text-strong); background: var(--surface); }
p, .muted { color: var(--text-body); }
::selection { background: var(--cyan); color: #000000; }
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; }

/* Stronger typographic hierarchy on every light surface. */
h1, h2, h3 { color: var(--navy); }
.section-heading p,
.page-hero p,
.hero-lead,
.feature-card p,
.module-card p,
.blog-card p,
.price-card li,
.industry-detail-grid li,
.faq-list details p,
.number-list p,
.values-grid p,
.outcome-cards p { color: var(--text-body); }

/* Eyebrows are now readable pills rather than low-contrast cyan text. */
.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--surface-strong);
  border: 1px solid rgba(36,180,213,.42);
  color: var(--navy);
  line-height: 1;
}

/* Header, navigation and brand refinements. */
.site-header {
  background: #FFFFFF;
  box-shadow: 0 10px 34px rgba(0,65,101,.08);
  border-bottom-color: rgba(0,65,101,.16);
}
.brand-wordmark strong { color: var(--blue); }
.brand-wordmark b { color: var(--navy); }
.brand-wordmark small { color: var(--blue); }
.nav-link { color: var(--navy); }
.nav-link:hover, .nav-link.active { color: var(--blue); }
.mega-menu {
  border-color: rgba(0,65,101,.2);
  box-shadow: 0 26px 70px rgba(0,65,101,.18);
}
.mega-menu small { color: var(--text-body); }

/* Buttons: deterministic contrast in every state. */
.btn-primary,
.btn-primary:hover,
.mobile-bottom-bar a:first-child {
  background: var(--cyan);
  color: #000000;
  border-color: var(--cyan);
}
.btn-primary:hover { box-shadow: 0 15px 30px rgba(0,65,101,.22); }
.btn-secondary,
.btn-ghost,
.btn-light { background: #FFFFFF; color: var(--navy); border-color: rgba(0,65,101,.24); }
.btn-secondary:hover,
.btn-ghost:hover,
.btn-light:hover { background: var(--surface-soft); color: var(--navy); }
.btn-outline-light { color: #FFFFFF; border-color: rgba(255,255,255,.68); background: transparent; }
.btn-outline-light:hover { background: #FFFFFF; color: var(--navy); border-color: #FFFFFF; }
.text-link { color: var(--blue); }

/* Light cards are always light; their copy is always dark. */
.module-card,
.feature-card,
.outcome-cards > div,
.industry-detail-grid article,
.info-panel,
.proposal-card,
.lead-form,
.price-card,
.blog-card,
.pricing-visual > div,
.factor-list div,
.values-grid article,
.faq-list details {
  background: #FFFFFF;
  color: #000000;
  border-color: rgba(0,65,101,.2);
}
.module-card,
.feature-card,
.outcome-cards > div,
.industry-detail-grid article,
.price-card,
.blog-card,
.values-grid article {
  box-shadow: 0 10px 28px rgba(0,65,101,.07);
}
.module-card:hover,
.feature-card:hover,
.outcome-cards > div:hover,
.industry-detail-grid article:hover,
.price-card:hover,
.blog-card:hover,
.values-grid article:hover {
  border-color: var(--cyan);
  box-shadow: 0 18px 42px rgba(0,65,101,.13);
  transform: translateY(-4px);
}
.feature-card, .values-grid article, .outcome-cards > div { transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease; }
.module-card h3,
.feature-card h3,
.outcome-cards h3,
.industry-detail-grid h3,
.price-card h3,
.blog-card h3,
.values-grid h3 { color: var(--navy); }
.module-card p,
.feature-card p,
.outcome-cards p,
.industry-detail-grid p,
.price-card p,
.blog-card p,
.values-grid p { color: var(--text-body); }

/* Icon tiles: cyan carries black; blue/navy carries white. */
.module-icon { background: var(--navy); color: #FFFFFF; border-color: var(--navy); }
.module-card:nth-child(4n+2) .module-icon,
.feature-card:nth-child(4n+2) .module-icon,
.industry-detail-grid article:nth-child(4n+2) .module-icon,
.blog-card:nth-child(4n+2) .module-icon,
.price-card:nth-child(4n+2) .module-icon { background: var(--cyan); color: #000000; }
.module-card:nth-child(4n+3) .module-icon,
.feature-card:nth-child(4n+3) .module-icon,
.industry-detail-grid article:nth-child(4n+3) .module-icon,
.blog-card:nth-child(4n+3) .module-icon,
.price-card:nth-child(4n+3) .module-icon { background: var(--blue); color: #FFFFFF; }
.module-card:nth-child(4n+4) .module-icon,
.feature-card:nth-child(4n+4) .module-icon,
.industry-detail-grid article:nth-child(4n+4) .module-icon,
.blog-card:nth-child(4n+4) .module-icon,
.price-card:nth-child(4n+4) .module-icon { background: #FFFFFF; color: var(--navy); border-color: var(--cyan); }

/* Small labels previously used low-opacity/cyan text on white. */
.industry-grid span,
.number-list li > span,
.values-grid span,
.industry-detail-grid article > span,
.process-step > span,
.price-label,
.blog-card > span,
.mobile-menu-label { color: var(--blue); }
.tag-cloud span,
.city-cloud span,
.check-list li,
.contact-benefits span,
.checkbox-grid label { color: var(--navy); }

/* Process line and circles. */
.process-icon { background: var(--navy); color: #FFFFFF; border-color: var(--navy); }
.process-step:nth-child(4n+2) .process-icon { background: var(--cyan); color: #000000; }
.process-step:nth-child(4n+3) .process-icon { background: var(--blue); color: #FFFFFF; }
.process-step:nth-child(4n+4) .process-icon { background: #FFFFFF; color: var(--navy); border: 2px solid var(--cyan); }
.process-step h3 { color: var(--navy); }
.process-step p { color: var(--text-body); }

/* All dark sections use white copy. Cyan is reserved for surfaces/decorations. */
.problems,
.command-section,
.security-band,
.cta-panel,
.contact-card,
.blog-visual,
.site-footer {
  color: #FFFFFF;
}
.problems h1, .problems h2, .problems h3,
.command-section h1, .command-section h2, .command-section h3,
.security-band h1, .security-band h2, .security-band h3,
.cta-panel h1, .cta-panel h2, .cta-panel h3,
.contact-card h1, .contact-card h2, .contact-card h3,
.blog-visual h1, .blog-visual h2, .blog-visual h3,
.site-footer h1, .site-footer h2, .site-footer h3 { color: #FFFFFF; }
.problems p,
.command-section p,
.security-band p,
.cta-panel p,
.contact-card p,
.blog-visual p,
.blog-visual span,
.site-footer p,
.footer-brand p,
.footer-status { color: var(--dark-muted); }
.problems .eyebrow,
.command-section .eyebrow,
.security-band .eyebrow,
.cta-panel .eyebrow,
.contact-card .eyebrow {
  background: var(--cyan);
  border-color: var(--cyan);
  color: #000000;
}
.problem-list p { color: #FFFFFF; }
.problem-list span { color: #FFFFFF; }
.command-points span { color: var(--dark-muted); }
.command-points b { color: #FFFFFF; }
.security-icon { color: #FFFFFF; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.22); }

/* Dark deployment cards and the white featured deployment card. */
.deployment-grid article { color: #FFFFFF; background: rgba(255,255,255,.045); border-color: rgba(255,255,255,.24); }
.deployment-grid article h3 { color: #FFFFFF; }
.deployment-grid article p { color: var(--dark-muted); }
.deployment-grid article > span { color: #FFFFFF; }
.deployment-grid article.featured { background: #FFFFFF; border-color: #FFFFFF; }
.deployment-grid article.featured h3,
.deployment-grid article.featured p { color: var(--navy); }
.deployment-grid article.featured > span { color: var(--blue); }
.deployment-grid article b { background: var(--cyan); color: #000000; }

/* CTA panel fixes — its paragraph was effectively invisible before. */
.cta-panel { box-shadow: 0 28px 70px rgba(0,65,101,.25); }
.cta-panel p { color: var(--dark-muted); }
.cta-panel .btn-light { color: var(--navy); background: #FFFFFF; }

/* Security band fixes. */
.security-grid p { color: var(--dark-muted); }
.security-grid .btn-light { background: #FFFFFF; color: var(--navy); }

/* Contact card details. */
.contact-card > div { border-top-color: rgba(255,255,255,.22); }
.contact-card > div span { color: var(--dark-subtle); }
.contact-card > div b,
.contact-card > div a { color: #FFFFFF; }
.contact-card > div a:hover { color: #FFFFFF; text-decoration: underline; text-decoration-color: var(--cyan); }

/* Footer is fully readable; copyright remains one line. */
.brand-light .brand-wordmark strong,
.brand-light .brand-wordmark b,
.brand-light .brand-wordmark small { color: #FFFFFF; }
.site-footer a { color: rgba(255,255,255,.86); }
.site-footer a:hover { color: #FFFFFF; text-decoration: underline; text-decoration-color: var(--cyan); }
.site-footer p strong { color: #FFFFFF; }
.footer-bottom,
.footer-legal a { color: rgba(255,255,255,.82); }
.footer-copyright a { color: #FFFFFF; }

/* Dashboard microcopy: full-strength colors for small font sizes. */
.dash-title small,
.dash-stats small,
.dash-stats span,
.panel-head,
.badge-head,
.floating-badge > small,
.printed-pass span { color: var(--blue); }
.dash-side b { background: var(--cyan); color: #000000; }
.badge-head b { background: var(--cyan); color: #000000; }
.live-pill { color: var(--navy); background: var(--surface-strong); }
.dash-stats > div,
.chart-card,
.gate-card { background: #FFFFFF; border-color: rgba(0,65,101,.17); }
.print-slot { background: var(--cyan); }

/* Platform architecture visibility. */
.platform-stack { background: var(--surface-soft); border: 1px solid rgba(0,65,101,.16); border-radius: 24px; }
.layer { box-shadow: 0 12px 28px rgba(0,65,101,.16); }
.l1 { background: var(--cyan); color: #000000; }
.l2, .l3, .l4 { color: #FFFFFF; }
.core-center { color: var(--dark-muted); }
.core-center strong { color: #FFFFFF; }
.core-node { background: #FFFFFF; color: var(--navy); border-color: rgba(0,65,101,.22); }

/* Orbit labels and visual callouts. */
.visual-label,
.industry-orbit span { background: #FFFFFF; color: var(--navy); }
.map-pin { background: var(--cyan); color: #000000; }
.map-legend { background: #000000; color: #FFFFFF; border: 1px solid rgba(255,255,255,.2); }

/* FAQ: clearer cards and interaction state. */
.faq-list details {
  border: 1px solid rgba(0,65,101,.18);
  border-radius: 14px;
  margin-bottom: 12px;
  padding: 0 20px;
  box-shadow: 0 8px 22px rgba(0,65,101,.055);
}
.faq-list details:last-child { border-bottom: 1px solid rgba(0,65,101,.18); }
.faq-list details[open] { border-color: var(--cyan); box-shadow: 0 12px 28px rgba(0,65,101,.1); }
.faq-list summary { color: var(--navy); }
.faq-list summary span { color: var(--blue); }

/* Forms: readable controls, placeholders and validation. */
.lead-form input,
.lead-form select,
.lead-form textarea {
  color: #000000;
  background: #FFFFFF;
  border-color: rgba(0,65,101,.26);
}
.lead-form input::placeholder,
.lead-form textarea::placeholder { color: rgba(0,0,0,.58); opacity: 1; }
.lead-form input:hover,
.lead-form select:hover,
.lead-form textarea:hover { border-color: var(--blue); }
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus { border-color: var(--blue); box-shadow: var(--focus-ring); }
.form-note, .lead-process p { color: var(--text-body); }

/* Pricing and blog polish. */
.price-card.featured { border: 2px solid var(--cyan); position: relative; overflow: hidden; }
.price-card.featured::before { content: "Recommended"; position: absolute; top: 0; right: 0; background: var(--cyan); color: #000000; padding: 7px 13px; border-radius: 0 0 0 12px; font-size: .65rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.blog-visual strong { color: #FFFFFF; }
.blog-card a { color: var(--blue); }

/* Mobile drawer contrast and spacing. */
.mobile-panel { color: #000000; }
.mobile-menu > a,
.mobile-products > summary { color: var(--navy); }
.mobile-products > div a { color: var(--blue); }
.mobile-contact a,
.mobile-contact p { color: var(--navy); }
.mobile-menu-card { background: var(--surface-strong); color: var(--navy); }
.mobile-menu-card span { color: var(--text-body); }
.mobile-menu-card > a { background: var(--navy); color: #FFFFFF; }
.mobile-bottom-bar a:last-child { background: var(--blue); color: #FFFFFF; }

/* Decorative soft sections remain visibly distinct from white cards. */
.modules-section,
.onsite-section,
.faq-section,
.form-section,
.architecture-section,
.soft-section,
.process-detail { background: var(--surface-soft); }
.trust-strip { background: #FFFFFF; }

@media (max-width: 820px) {
  .module-card:hover,
  .feature-card:hover,
  .outcome-cards > div:hover,
  .industry-detail-grid article:hover,
  .price-card:hover,
  .blog-card:hover,
  .values-grid article:hover { transform: none; }
  .cta-panel { padding: 40px 30px; }
}

@media (max-width: 560px) {
  .eyebrow { font-size: .66rem; letter-spacing: .12em; }
  .module-card, .feature-card, .industry-detail-grid article, .blog-card, .price-card { padding: 24px; }
  .faq-list details { padding: 0 16px; }
  .footer-copyright { white-space: nowrap; font-size: clamp(.5rem,2.35vw,.63rem); }
  .platform-stack { border-radius: 18px; padding: 12px; }
}


/* ========================================================================== 
   Icon reliability, mobile navigation and footer wordmark refinement
   ========================================================================== */
.svg-sprite {
  position: absolute !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
}

/* CSS-drawn hamburger: always shows three clear horizontal lines. */
.menu-toggle {
  color: var(--navy);
  border: 1px solid rgba(0,65,101,.28);
  background: #FFFFFF;
  box-shadow: 0 5px 16px rgba(0,65,101,.09);
}
.hamburger-lines {
  width: 23px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}
.hamburger-lines > span {
  display: block;
  width: 100%;
  height: 2.5px;
  border-radius: 999px;
  background: var(--navy);
  transform-origin: center;
  transition: transform .22s ease, opacity .18s ease, width .22s ease;
}
.menu-toggle:hover,
.menu-toggle:focus-visible {
  background: var(--soft);
  border-color: var(--blue);
}
.menu-toggle.is-open .hamburger-lines > span:nth-child(1) { transform: translateY(7.75px) rotate(45deg); }
.menu-toggle.is-open .hamburger-lines > span:nth-child(2) { opacity: 0; width: 0; }
.menu-toggle.is-open .hamburger-lines > span:nth-child(3) { transform: translateY(-7.75px) rotate(-45deg); }

/* Contact icons: visible cyan circles with navy line icons. */
.mobile-contact a,
.mobile-contact p {
  align-items: center;
  gap: 12px;
  color: var(--navy);
}
.mobile-contact > a > .icon,
.mobile-contact > p > .icon {
  width: 32px;
  height: 32px;
  min-width: 32px;
  padding: 7px;
  margin-top: 0;
  border-radius: 50%;
  color: var(--navy);
  background: var(--cyan);
  border: 1px solid var(--navy);
  box-shadow: 0 4px 10px rgba(0,65,101,.12);
}
.mobile-menu-label { color: var(--blue); }

/* Social/quick-action icons: clearly visible inside round controls. */
.mobile-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.mobile-socials a {
  width: 40px;
  height: 40px;
  min-width: 40px;
  padding: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cyan);
  color: var(--navy);
  border: 2px solid var(--navy);
  box-shadow: 0 5px 13px rgba(0,65,101,.14);
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.mobile-socials a:hover,
.mobile-socials a:focus-visible {
  transform: translateY(-2px);
  background: var(--navy);
  color: #FFFFFF;
}
.mobile-socials a .icon {
  width: 18px;
  height: 18px;
  color: currentColor;
}

/* Keep the complete footer wordmark beside the logo symbol at every width. */
.footer-brand .brand {
  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  flex-wrap: nowrap !important;
  gap: 13px;
  width: max-content;
  max-width: 100%;
  min-width: 0 !important;
}
.footer-brand .brand-symbol {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 15px;
}
.footer-brand .brand-wordmark {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
  line-height: 1;
}
.footer-brand .brand-wordmark strong,
.footer-brand .brand-wordmark b,
.footer-brand .brand-wordmark small {
  display: block;
  white-space: nowrap;
  text-align: left;
}
.footer-brand .brand-wordmark strong {
  color: var(--cyan);
  font-size: .68rem;
  letter-spacing: .17em;
  margin-bottom: 5px;
}
.footer-brand .brand-wordmark b {
  color: #FFFFFF;
  font-size: 1.08rem;
  letter-spacing: -.02em;
}
.footer-brand .brand-wordmark small {
  color: var(--cyan);
  font-size: .54rem;
  letter-spacing: .14em;
  margin-top: 7px;
}

/* Ensure SVG line icons inherit the control color. */
.mobile-panel .icon,
.menu-toggle .icon,
.mobile-close .icon { stroke: currentColor; }

@media (max-width: 560px) {
  .footer-brand .brand {
    width: auto;
    max-width: 100%;
    gap: 11px;
  }
  .footer-brand .brand-symbol {
    width: 46px;
    height: 46px;
    min-width: 46px;
    border-radius: 13px;
  }
  .footer-brand .brand-wordmark strong { font-size: .58rem; }
  .footer-brand .brand-wordmark b { font-size: .92rem; }
  .footer-brand .brand-wordmark small { font-size: .46rem; letter-spacing: .11em; }
  .mobile-contact,.mobile-follow { padding-left: 20px; padding-right: 20px; }
}

/* ========================================================================== 
   Mobile navigation parity with desktop header
   ========================================================================== */
.mobile-menu > a.is-current,
.mobile-products.is-current-group > summary {
  background: rgba(36,180,213,.14);
  color: var(--navy);
  box-shadow: inset 4px 0 0 var(--cyan);
}
.mobile-products > div a.is-current {
  background: var(--navy);
  color: #FFFFFF;
  box-shadow: inset 4px 0 0 var(--cyan);
}
.mobile-menu > a.mobile-menu-cta {
  margin: 16px 20px 4px;
  min-height: 46px;
  justify-content: center;
  border: 1px solid var(--navy);
  border-radius: 12px;
  background: var(--cyan);
  color: #000000;
  box-shadow: 0 8px 18px rgba(0,65,101,.12);
}
.mobile-menu > a.mobile-menu-cta:hover,
.mobile-menu > a.mobile-menu-cta:focus-visible,
.mobile-menu > a.mobile-menu-cta.is-current {
  background: var(--navy);
  color: #FFFFFF;
}
