:root {
  --ink: #0b1b22;
  --ink-2: #10262d;
  --ink-3: #17363e;
  --navy: #06171c;
  --navy-2: #09242a;
  --navy-3: #0d3037;
  --paper: #f3f6f7;
  --paper-2: #e9eff1;
  --white: #ffffff;
  --text: #13262e;
  --muted: #62737c;
  --muted-dark: #90a6ae;
  --line: #d7e1e4;
  --line-dark: rgba(255,255,255,.11);
  --mint: #55dfc1;
  --mint-2: #22c6aa;
  --mint-dark: #0b9d85;
  --mint-soft: #dff8f2;
  --blue: #7da6ff;
  --blue-soft: #e8eeff;
  --yellow: #f3c65b;
  --danger: #cf5360;
  --shadow-sm: 0 12px 30px rgba(6,23,28,.07);
  --shadow-md: 0 28px 70px rgba(6,23,28,.12);
  --shadow-lg: 0 48px 120px rgba(3,16,20,.24);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-xl: 36px;
  --container: 1220px;
  --header-height: 78px;
  --ease: 220ms cubic-bezier(.2,.7,.2,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 118px; overflow-x: clip; }
body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
body.menu-open { overflow: hidden; }
img, svg { max-width: 100%; }
img { display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4, p, ul, ol, blockquote, figure { margin-top: 0; }
h1, h2, h3, h4 { color: var(--ink); line-height: 1.06; letter-spacing: -.042em; }
h1 { font-size: clamp(3.25rem, 6vw, 5.4rem); }
h2 { font-size: clamp(2.25rem, 4.3vw, 4.2rem); }
h3 { font-size: 1.3rem; }
p { color: var(--muted); }
::selection { color: var(--navy); background: var(--mint); }

:where(a, button, input, select, textarea, summary):focus-visible {
  outline: 3px solid var(--mint);
  outline-offset: 3px;
}

.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { position: relative; padding: 112px 0; }
.icon { width: 24px; height: 24px; flex: 0 0 auto; }
.mini-icon { width: 14px; height: 14px; }
.button-icon { width: 18px; height: 18px; transition: transform var(--ease); }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 9999; padding: 11px 15px; color: var(--navy); background: var(--mint); border-radius: 10px; transform: translateY(-150%); transition: transform var(--ease); }
.skip-link:focus { transform: none; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(20px); transition: opacity 680ms ease, transform 680ms cubic-bezier(.2,.7,.2,1); }
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 17px; color: var(--mint-dark); font-size: .72rem; font-weight: 850; letter-spacing: .16em; line-height: 1.2; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 31px; height: 2px; background: currentColor; }
.eyebrow-light { color: var(--mint); }
.section-heading { max-width: 780px; }
.section-heading h2 { margin-bottom: 20px; }
.section-heading h2 span { color: var(--mint-dark); }
.section-heading p { max-width: 690px; margin: 0; font-size: 1.06rem; }
.section-heading-inverse h2 { color: var(--white); }
.section-heading-inverse p { color: var(--muted-dark); }
.section-heading-center { margin-inline: auto; text-align: center; }
.section-heading-center .eyebrow { justify-content: center; }
.section-heading-center p { margin-inline: auto; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 11px; min-height: 54px; padding: 0 23px; border: 1px solid transparent; border-radius: 13px; font-size: .88rem; font-weight: 820; letter-spacing: -.012em; line-height: 1; transition: transform var(--ease), box-shadow var(--ease), background var(--ease), color var(--ease), border-color var(--ease); }
.button:hover { transform: translateY(-2px); }
.button:hover .button-icon, .card-link:hover .button-icon { transform: translateX(4px); }
.button-primary { color: #04211d; background: var(--mint); box-shadow: 0 14px 34px rgba(85,223,193,.2); }
.button-primary:hover { background: #6ce9ce; box-shadow: 0 18px 42px rgba(85,223,193,.3); }
.button-secondary { color: var(--ink); background: var(--white); border-color: var(--line); box-shadow: var(--shadow-sm); }
.button-secondary:hover { border-color: #aebfc4; box-shadow: var(--shadow-md); }
.button-light { color: var(--navy); background: var(--white); }
.button-light:hover { background: var(--mint); }
.button-outline-light { color: var(--white); background: transparent; border-color: rgba(255,255,255,.25); }
.button-outline-light:hover { border-color: rgba(255,255,255,.65); background: rgba(255,255,255,.08); }
.button-text { min-height: 44px; padding: 0; color: var(--mint-dark); background: transparent; border: 0; }
.button-text:hover { color: var(--ink); transform: none; }
.button-small { min-height: 46px; padding: 0 18px; border-radius: 12px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 31px; }
.card-link { display: inline-flex; align-items: center; gap: 9px; color: var(--ink); font-size: .88rem; font-weight: 820; }

/* Utility and header */
.utility-bar { position: relative; z-index: 110; color: #a8bec5; background: #031015; border-bottom: 1px solid rgba(255,255,255,.07); }
.utility-inner { min-height: 34px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; font-size: .68rem; }
.utility-location, .utility-contact, .utility-partner, .utility-contact a, .utility-phone { display: flex; align-items: center; gap: 7px; }
.utility-location svg, .utility-contact svg { width: 14px; height: 14px; color: var(--mint); }
.utility-location strong { color: var(--white); }
.utility-partner { justify-self: center; }
.utility-partner strong { color: var(--mint); letter-spacing: .08em; }
.utility-contact { justify-self: end; gap: 16px; }
.utility-contact a { transition: color var(--ease); }
.utility-contact a:hover, .utility-partner:hover { color: var(--white); }

.site-header { position: sticky; top: 0; z-index: 100; height: var(--header-height); color: var(--white); background: rgba(6,23,28,.92); border-bottom: 1px solid rgba(255,255,255,.08); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); transition: background var(--ease), box-shadow var(--ease); }
.site-header.is-scrolled { background: rgba(4,17,21,.97); box-shadow: 0 14px 40px rgba(0,0,0,.2); }
.header-inner { height: 100%; display: flex; align-items: center; gap: 26px; }
.brand { display: inline-flex; flex: 0 0 auto; }
.brand img { width: 192px; height: auto; }
.desktop-nav { display: flex; align-items: center; justify-content: center; gap: 2px; margin-left: auto; }
.desktop-nav a { position: relative; padding: 10px 11px; color: #a9bdc4; font-size: .79rem; font-weight: 760; transition: color var(--ease), background var(--ease); border-radius: 10px; }
.desktop-nav a:hover, .desktop-nav a.active { color: var(--white); background: rgba(255,255,255,.055); }
.desktop-nav a.active::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: 4px; height: 2px; background: var(--mint); border-radius: 2px; }
.header-cta { margin-left: 5px; }
.menu-button { display: none; width: 48px; height: 48px; align-items: center; justify-content: center; color: var(--white); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 13px; }
.menu-button svg { width: 24px; height: 24px; }
.menu-close { display: none; }
.menu-button[aria-expanded="true"] .menu-open { display: none; }
.menu-button[aria-expanded="true"] .menu-close { display: block; }
.mobile-menu { display: none; position: absolute; inset: 100% 0 auto; height: calc(100dvh - var(--header-height) - 34px); max-height: none; overflow-y: auto; background: #05161b; border-top: 1px solid rgba(255,255,255,.08); box-shadow: var(--shadow-lg); }
.mobile-menu nav { display: grid; padding-top: 18px; }
.mobile-menu nav a { padding: 14px 0; color: #c2d2d7; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 1.05rem; font-weight: 760; }
.mobile-menu nav a.active { color: var(--mint); }
.mobile-menu-bottom { display: grid; gap: 17px; padding-top: 20px; padding-bottom: 28px; }
.mobile-menu-bottom > a:first-child { display: flex; align-items: center; gap: 10px; color: #b7cbd1; font-size: .86rem; }
.mobile-menu-bottom > a:first-child svg { width: 19px; height: 19px; color: var(--mint); }
.mobile-menu.is-open { display: block; }
body.menu-open .mobile-actions { opacity: 0; pointer-events: none; }

/* Home hero */
.home-hero { position: relative; isolation: isolate; overflow: hidden; padding: 88px 0 0; color: var(--white); background: radial-gradient(circle at 83% 20%, rgba(85,223,193,.11), transparent 27%), radial-gradient(circle at 7% 86%, rgba(125,166,255,.11), transparent 27%), linear-gradient(135deg,#041216 0%,#071d23 52%,#0b2830 100%); }
.home-hero::before { content: ""; position: absolute; inset: 0; z-index: -3; opacity: .35; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 80px 80px; mask-image: linear-gradient(to bottom,black,transparent 90%); }
.hero-lines { position: absolute; inset: 0; z-index: -2; opacity: .45; background: linear-gradient(112deg,transparent 20%,rgba(85,223,193,.08) 20.1%,transparent 20.3%), linear-gradient(40deg,transparent 72%,rgba(125,166,255,.08) 72.1%,transparent 72.3%); }
.hero-ambient { position: absolute; z-index: -1; border-radius: 50%; filter: blur(2px); }
.ambient-one { width: 560px; height: 560px; right: -150px; top: -280px; border: 1px solid rgba(85,223,193,.18); box-shadow: 0 0 0 85px rgba(85,223,193,.025),0 0 0 170px rgba(85,223,193,.018); }
.ambient-two { width: 380px; height: 380px; left: -190px; bottom: 10px; border: 1px solid rgba(125,166,255,.15); box-shadow: 0 0 0 70px rgba(125,166,255,.02); }
.home-hero-layout { display: grid; grid-template-columns: minmax(0,1.05fr) minmax(430px,.95fr); align-items: center; gap: 75px; min-height: 590px; padding-bottom: 115px; }
.hero-copy { position: relative; z-index: 3; }
.hero-kicker { display: inline-flex; align-items: center; gap: 9px; margin-bottom: 24px; padding: 9px 12px; color: #bdd0d5; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.1); border-radius: 999px; font-size: .7rem; font-weight: 760; }
.hero-kicker svg { width: 16px; height: 16px; color: var(--mint); }
.hero-copy h1 { max-width: 760px; margin-bottom: 25px; color: var(--white); font-size: clamp(3.55rem, 6vw, 5.8rem); }
.hero-copy h1 span { color: var(--mint); }
.hero-lead { max-width: 680px; margin-bottom: 0; color: #a9bdc4; font-size: 1.08rem; line-height: 1.75; }
.hero-proof { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; margin-top: 42px; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.1); }
.hero-proof > div { display: flex; align-items: flex-start; gap: 10px; }
.hero-proof svg { width: 19px; height: 19px; margin-top: 1px; color: var(--mint); }
.hero-proof span { display: grid; gap: 3px; }
.hero-proof strong { color: #eaf3f4; font-size: .75rem; }
.hero-proof small { color: #6f8891; font-size: .63rem; line-height: 1.45; }
.hero-console-wrap { position: relative; }
.service-console { position: relative; min-height: 470px; padding: 21px; background: linear-gradient(145deg,rgba(13,48,55,.92),rgba(6,23,28,.96)); border: 1px solid rgba(255,255,255,.14); border-radius: 28px; box-shadow: 0 45px 100px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.06); }
.service-console::before { content: ""; position: absolute; inset: -1px; z-index: -1; border-radius: inherit; background: linear-gradient(135deg,rgba(85,223,193,.34),transparent 35%,rgba(125,166,255,.2)); filter: blur(18px); opacity: .42; }
.console-header { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 10px; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.1); color: #7e969e; font-size: .58rem; letter-spacing: .12em; }
.console-header > span { display: flex; gap: 5px; }
.console-header i { width: 6px; height: 6px; background: rgba(255,255,255,.15); border-radius: 50%; }
.console-header strong { color: #91a9b0; font-size: .58rem; }
.console-header em { justify-self: end; color: var(--mint); font-style: normal; }
.console-device { display: grid; grid-template-columns: 54px 1fr auto; align-items: center; gap: 15px; margin-top: 19px; padding: 17px; background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.09); border-radius: 18px; }
.console-device-icon { width: 54px; height: 54px; display: grid; place-items: center; color: var(--mint); background: rgba(85,223,193,.09); border: 1px solid rgba(85,223,193,.16); border-radius: 15px; }
.console-device-icon svg { width: 27px; height: 27px; }
.console-device > div:nth-child(2) { display: grid; }
.console-device small { color: #718b93; font-size: .6rem; }
.console-device strong { margin: 2px 0 3px; color: var(--white); font-size: .92rem; }
.console-device span { color: #91a9b0; font-size: .68rem; }
.console-device b { padding: 6px 9px; color: #05231e; background: var(--mint); border-radius: 999px; font-size: .57rem; letter-spacing: .06em; text-transform: uppercase; }
.console-progress { display: grid; grid-template-columns: auto 1fr auto 1fr auto 1fr auto; align-items: start; gap: 9px; margin: 32px 8px 26px; }
.console-progress > div { display: grid; justify-items: center; gap: 8px; min-width: 51px; }
.console-progress > div span { width: 30px; height: 30px; display: grid; place-items: center; color: #789099; background: #0b2930; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; font-size: .67rem; font-weight: 800; }
.console-progress > div span svg { width: 15px; height: 15px; }
.console-progress > div small { color: #728a92; font-size: .56rem; }
.console-progress > i { height: 1px; margin-top: 15px; background: rgba(255,255,255,.12); }
.console-progress > div.complete span { color: #05221e; background: var(--mint); border-color: var(--mint); }
.console-progress > div.complete small { color: #a6c1c7; }
.console-progress > div.active span { color: var(--mint); border-color: rgba(85,223,193,.6); box-shadow: 0 0 0 5px rgba(85,223,193,.07); }
.console-progress > div.active small { color: var(--white); }
.console-rule { display: flex; gap: 13px; align-items: center; padding: 16px; background: linear-gradient(135deg,rgba(125,166,255,.1),rgba(85,223,193,.06)); border: 1px solid rgba(125,166,255,.14); border-radius: 16px; }
.console-rule > svg { width: 24px; height: 24px; color: var(--blue); }
.console-rule span { display: grid; }
.console-rule small { color: #7d969e; font-size: .58rem; }
.console-rule strong { color: #dbe9ec; font-size: .73rem; }
.console-footer { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-top: 19px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.08); }
.console-footer > div:first-child { display: flex; align-items: center; gap: 8px; color: #a2b7be; font-size: .63rem; }
.status-dot { width: 8px; height: 8px; background: var(--mint); border-radius: 50%; box-shadow: 0 0 0 5px rgba(85,223,193,.1); }
.console-ncti { display: flex; align-items: center; gap: 9px; }
.console-ncti small { color: #657e87; font-size: .55rem; text-transform: uppercase; letter-spacing: .08em; }
.console-ncti img { width: 74px; height: auto; opacity: .88; }
.problem-dock { position: relative; z-index: 5; margin-bottom: -90px; padding: 18px; color: var(--text); background: rgba(255,255,255,.96); border: 1px solid rgba(255,255,255,.5); border-radius: 24px; box-shadow: var(--shadow-lg); backdrop-filter: blur(15px); }
.problem-dock-heading { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 0 5px 13px; }
.problem-dock-heading > span { color: var(--ink); font-size: .82rem; font-weight: 820; }
.problem-dock-heading a { display: flex; align-items: center; gap: 7px; color: var(--mint-dark); font-size: .7rem; font-weight: 800; }
.problem-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 9px; }
.problem-card { display: grid; grid-template-columns: 43px 1fr auto; align-items: center; gap: 12px; min-height: 85px; padding: 13px; background: var(--paper); border: 1px solid #e0e8ea; border-radius: 16px; transition: transform var(--ease), background var(--ease), border-color var(--ease), box-shadow var(--ease); }
.problem-card:hover { transform: translateY(-3px); background: var(--white); border-color: #b8cbc9; box-shadow: var(--shadow-sm); }
.problem-icon { width: 43px; height: 43px; display: grid; place-items: center; color: var(--mint-dark); background: var(--mint-soft); border-radius: 12px; }
.problem-icon svg { width: 21px; height: 21px; }
.problem-card > span:nth-child(2) { display: grid; gap: 2px; }
.problem-card strong { color: var(--ink); font-size: .73rem; }
.problem-card small { color: #78878f; font-size: .58rem; line-height: 1.4; }
.problem-arrow { width: 16px; height: 16px; color: #9badb3; }

/* Services home */
.services-section { padding-top: 190px; background: var(--paper); }
.services-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 45px; margin-bottom: 50px; }
.services-header-note { width: 330px; display: flex; align-items: flex-start; gap: 12px; padding: 17px; background: var(--white); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-sm); }
.services-header-note > svg { width: 20px; height: 20px; color: var(--mint-dark); }
.services-header-note p { display: grid; gap: 3px; margin: 0; }
.services-header-note strong { color: var(--ink); font-size: .72rem; }
.services-header-note span { color: var(--muted); font-size: .64rem; line-height: 1.45; }
.services-bento { display: grid; grid-template-columns: repeat(12,minmax(0,1fr)); gap: 16px; }
.service-card { position: relative; min-height: 420px; display: flex; flex-direction: column; overflow: hidden; padding: 28px; background: var(--white); border: 1px solid var(--line); border-radius: 23px; box-shadow: var(--shadow-sm); transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease); }
.service-card:hover { transform: translateY(-5px); border-color: #b8cbcf; box-shadow: var(--shadow-md); }
.service-card::after { content: ""; position: absolute; width: 260px; height: 260px; right: -140px; bottom: -145px; border: 1px solid rgba(85,223,193,.18); border-radius: 50%; box-shadow: 0 0 0 45px rgba(85,223,193,.025); }
.service-card-1, .service-card-2 { grid-column: span 6; }
.service-card-3, .service-card-4, .service-card-phone { grid-column: span 4; min-height: 390px; }
.service-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 46px; }
.service-number { color: #c3ced2; font-size: 1rem; font-weight: 900; letter-spacing: -.05em; }
.service-icon { width: 57px; height: 57px; display: grid; place-items: center; color: var(--mint-dark); background: var(--mint-soft); border-radius: 16px; }
.service-icon svg { width: 27px; height: 27px; }
.service-kicker { display: block; margin-bottom: 11px; color: var(--mint-dark); font-size: .65rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.service-card h3 { max-width: 470px; margin-bottom: 14px; font-size: clamp(1.5rem,2.4vw,2.18rem); }
.service-card p { max-width: 520px; margin-bottom: 22px; font-size: .85rem; }
.service-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 24px; }
.service-tags span { padding: 6px 9px; color: #5f7279; background: var(--paper); border: 1px solid #e1e8ea; border-radius: 999px; font-size: .58rem; }
.service-card .card-link { position: relative; z-index: 2; margin-top: auto; }
.service-card-phone { color: var(--white); background: linear-gradient(145deg,#0a2228,#0d343b); border-color: rgba(255,255,255,.08); }
.service-card-phone::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%,rgba(85,223,193,.13),transparent 35%); }
.service-card-phone .service-number { color: #56757d; }
.service-card-phone .service-icon { color: var(--mint); background: rgba(85,223,193,.1); }
.service-card-phone .service-kicker { color: var(--mint); }
.service-card-phone h3 { color: var(--white); }
.service-card-phone p { color: #9fb5bc; }
.service-card-phone .card-link { color: var(--white); }
.phone-partner-mini { position: relative; z-index: 2; display: flex; align-items: center; gap: 12px; margin-bottom: 24px; padding: 12px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.09); border-radius: 13px; }
.phone-partner-mini img { width: 75px; height: auto; }
.phone-partner-mini span { color: #8da5ad; font-size: .57rem; line-height: 1.4; }

/* Process */
.process-section { overflow: hidden; color: var(--white); background: var(--navy); }
.process-section::before { content: ""; position: absolute; inset: 0; opacity: .24; background-image: linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px); background-size: 70px 70px; }
.process-glow { position: absolute; width: 650px; height: 650px; right: -260px; top: -300px; border-radius: 50%; background: radial-gradient(circle,rgba(85,223,193,.11),transparent 65%); }
.process-layout { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; gap: 95px; }
.process-copy { align-self: start; }
.process-principles { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; margin-top: 40px; }
.process-principles > div { display: flex; gap: 12px; padding: 15px; background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.08); border-radius: 15px; }
.process-principles > div > span { width: 38px; height: 38px; display: grid; place-items: center; color: var(--mint); background: rgba(85,223,193,.08); border-radius: 11px; }
.process-principles svg { width: 19px; height: 19px; }
.process-principles p { display: grid; gap: 3px; margin: 0; }
.process-principles strong { color: #dce9ec; font-size: .67rem; }
.process-principles small { color: #708890; font-size: .56rem; line-height: 1.4; }
.process-timeline { position: relative; display: grid; gap: 12px; }
.process-timeline::before { content: ""; position: absolute; left: 27px; top: 40px; bottom: 40px; width: 1px; background: linear-gradient(var(--mint),rgba(255,255,255,.08)); }
.timeline-step { position: relative; z-index: 2; display: grid; grid-template-columns: 56px 1fr; gap: 20px; align-items: start; padding: 23px; background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.09); border-radius: 18px; backdrop-filter: blur(8px); }
.timeline-number { width: 44px; height: 44px; display: grid; place-items: center; color: var(--navy); background: var(--mint); border-radius: 13px; font-size: .67rem; font-weight: 900; }
.timeline-step h3 { margin-bottom: 8px; color: var(--white); font-size: 1.15rem; }
.timeline-step p { margin: 0; color: #8ea5ad; font-size: .78rem; }

/* Partner */
.partner-section { background: var(--paper-2); }
.partner-shell { display: grid; grid-template-columns: .72fr 1.28fr; overflow: hidden; background: linear-gradient(135deg,#06171c,#0b3037); border-radius: 32px; box-shadow: var(--shadow-md); }
.partner-brand-panel { position: relative; min-height: 540px; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 20px; padding: 50px; background: rgba(255,255,255,.035); border-right: 1px solid rgba(255,255,255,.09); }
.partner-brand-panel::before, .partner-brand-panel::after { content: ""; position: absolute; border: 1px solid rgba(85,223,193,.15); border-radius: 50%; }
.partner-brand-panel::before { width: 360px; height: 360px; }
.partner-brand-panel::after { width: 250px; height: 250px; }
.partner-brand-panel > span { position: relative; z-index: 2; color: #718b93; font-size: .63rem; letter-spacing: .15em; text-transform: uppercase; }
.partner-brand-panel img { position: relative; z-index: 2; width: 230px; height: auto; }
.partner-brand-panel small { position: relative; z-index: 2; max-width: 260px; color: #738d95; font-size: .62rem; line-height: 1.5; text-align: center; }
.partner-copy-panel { padding: 64px; }
.partner-copy-panel h2 { max-width: 720px; margin-bottom: 23px; color: var(--white); font-size: clamp(2.3rem,3.9vw,4rem); }
.partner-copy-panel > p { max-width: 700px; margin-bottom: 30px; color: #91a9b0; font-size: .96rem; }
.partner-use-cases { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
.partner-use-cases > div { display: flex; gap: 12px; padding: 16px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09); border-radius: 15px; }
.partner-use-cases svg { width: 22px; height: 22px; color: var(--mint); }
.partner-use-cases span { display: grid; gap: 4px; }
.partner-use-cases strong { color: #dce9eb; font-size: .71rem; }
.partner-use-cases small { color: #718991; font-size: .59rem; line-height: 1.45; }

/* Local */
.local-section { background: var(--white); }
.local-layout { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 90px; }
.local-map { position: relative; min-height: 490px; overflow: hidden; background: linear-gradient(145deg,#e7eff1,#f7f9fa); border: 1px solid var(--line); border-radius: 30px; box-shadow: var(--shadow-sm); }
.local-map::before { content: ""; position: absolute; inset: 0; opacity: .45; background-image: linear-gradient(rgba(13,48,55,.06) 1px,transparent 1px),linear-gradient(90deg,rgba(13,48,55,.06) 1px,transparent 1px); background-size: 45px 45px; }
.map-orbit { position: absolute; left: 50%; top: 50%; border: 1px solid rgba(11,157,133,.24); border-radius: 50%; transform: translate(-50%,-50%); }
.orbit-a { width: 165px; height: 165px; }
.orbit-b { width: 310px; height: 310px; }
.orbit-c { width: 480px; height: 480px; }
.map-center { position: absolute; left: 50%; top: 50%; width: 112px; height: 112px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--white); background: var(--navy-2); border: 7px solid rgba(85,223,193,.2); border-radius: 50%; transform: translate(-50%,-50%); box-shadow: 0 20px 50px rgba(6,23,28,.25); }
.map-center i { width: 9px; height: 9px; margin-bottom: 6px; background: var(--mint); border-radius: 50%; box-shadow: 0 0 0 6px rgba(85,223,193,.1); }
.map-center strong { font-size: .85rem; }
.map-center small { color: #8099a1; font-size: .55rem; }
.map-node { position: absolute; padding: 7px 10px; color: #5c6f76; background: rgba(255,255,255,.9); border: 1px solid #d8e2e4; border-radius: 999px; box-shadow: var(--shadow-sm); font-size: .59rem; font-weight: 760; }
.node-a { left: 10%; top: 18%; }.node-b { right: 8%; top: 25%; }.node-c { left: 12%; bottom: 17%; }.node-d { right: 11%; bottom: 13%; }
.area-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 29px; }
.area-chips span { padding: 8px 11px; color: #51656c; background: var(--paper); border: 1px solid var(--line); border-radius: 999px; font-size: .64rem; }
.local-actions { display: flex; flex-wrap: wrap; gap: 17px; align-items: center; margin-top: 33px; }

/* Web partners */
.web-partners-section { background: var(--paper); }
.web-partners-layout { display: grid; grid-template-columns: .86fr 1.14fr; gap: 75px; align-items: start; }
.web-brand-grid { display: grid; gap: 14px; }
.web-brand-card { display: grid; grid-template-columns: 74px 1fr; gap: 22px; padding: 27px; background: var(--white); border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow-sm); transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease); }
.web-brand-card:hover { transform: translateY(-4px); border-color: #b7cccf; box-shadow: var(--shadow-md); }
.web-brand-symbol { width: 74px; height: 74px; display: grid; place-items: center; color: var(--white); background: linear-gradient(145deg,var(--navy-2),var(--mint-dark)); border-radius: 20px; font-size: 1.65rem; font-weight: 900; }
.web-brand-card small { color: var(--mint-dark); font-size: .59rem; font-weight: 820; letter-spacing: .08em; text-transform: uppercase; }
.web-brand-card h3 { margin: 5px 0 8px; font-size: 1.65rem; }
.web-brand-card p { margin-bottom: 12px; font-size: .78rem; }
.web-brand-card strong { display: inline-flex; align-items: center; gap: 7px; color: var(--ink); font-size: .7rem; }

/* Blog cards */
.blog-preview-section { background: var(--white); }
.blog-preview-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 35px; margin-bottom: 45px; }
.posts-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 17px; }
.post-card { overflow: hidden; background: var(--white); border: 1px solid var(--line); border-radius: 21px; box-shadow: var(--shadow-sm); transition: transform var(--ease), box-shadow var(--ease); }
.post-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.post-card-visual { display: block; }
.post-visual { position: relative; min-height: 215px; overflow: hidden; color: var(--white); background: linear-gradient(145deg,#07191f,#0e3941); }
.post-grid { position: absolute; inset: 0; opacity: .35; 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: 38px 38px; }
.post-shape { position: absolute; border: 1px solid rgba(85,223,193,.28); border-radius: 50%; }
.shape-one { width: 230px; height: 230px; right: -70px; top: -75px; }
.shape-two { width: 120px; height: 120px; right: 45px; top: 12px; }
.post-icon { position: absolute; left: 28px; bottom: 29px; width: 62px; height: 62px; display: grid; place-items: center; color: var(--mint); background: rgba(85,223,193,.09); border: 1px solid rgba(85,223,193,.18); border-radius: 18px; }
.post-icon svg { width: 31px; height: 31px; }
.post-visual > small { position: absolute; right: 22px; bottom: 22px; color: #8ea8af; font-size: .58rem; letter-spacing: .13em; text-transform: uppercase; }
.post-visual-disk { background: linear-gradient(145deg,#101a2c,#223b6f); }
.post-visual-care { background: linear-gradient(145deg,#14231c,#246346); }
.post-visual-warning { background: linear-gradient(145deg,#281616,#713c31); }
.post-card-content { padding: 25px; }
.post-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 9px; margin-bottom: 13px; color: #8a9aa0; font-size: .58rem; }
.post-meta span { padding: 4px 7px; color: var(--mint-dark); background: var(--mint-soft); border-radius: 999px; font-weight: 800; }
.post-meta em { font-style: normal; }
.post-card h3 { margin-bottom: 12px; font-size: 1.25rem; }
.post-card p { margin-bottom: 19px; font-size: .76rem; }

/* Reviews */
.reviews-section { background: var(--paper-2); }
.reviews-shell { display: grid; grid-template-columns: 1.08fr .92fr; gap: 70px; align-items: center; padding: 55px; background: var(--white); border: 1px solid var(--line); border-radius: 28px; box-shadow: var(--shadow-sm); }
.reviews-copy h2 { margin-bottom: 18px; font-size: clamp(2rem,3.5vw,3.2rem); }
.reviews-copy p { margin-bottom: 25px; }
.reviews-status { display: inline-flex; align-items: center; gap: 9px; padding: 10px 13px; color: #3e5c55; background: var(--mint-soft); border-radius: 999px; font-size: .66rem; font-weight: 760; }
.reviews-status svg { width: 17px; height: 17px; color: var(--mint-dark); }
.reviews-values { display: grid; gap: 10px; }
.reviews-values > div { display: grid; grid-template-columns: 43px 1fr; column-gap: 13px; padding: 17px; background: var(--paper); border: 1px solid var(--line); border-radius: 15px; }
.reviews-values svg { grid-row: 1 / 3; width: 43px; height: 43px; padding: 11px; color: var(--mint-dark); background: var(--mint-soft); border-radius: 12px; }
.reviews-values strong { color: var(--ink); font-size: .77rem; }
.reviews-values span { color: var(--muted); font-size: .64rem; }

/* CTA and footer */
.cta-section { position: relative; overflow: hidden; padding: 80px 0; color: var(--white); background: linear-gradient(135deg,#07191e,#0d343b); }
.cta-section::before { content: ""; position: absolute; inset: 0; opacity: .25; background-image: linear-gradient(rgba(255,255,255,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.045) 1px,transparent 1px); background-size: 60px 60px; }
.cta-glow { position: absolute; width: 530px; height: 530px; right: -180px; top: -260px; border-radius: 50%; background: radial-gradient(circle,rgba(85,223,193,.18),transparent 67%); }
.cta-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.cta-inner > div:first-child { max-width: 720px; }
.cta-inner > div:first-child > span { color: var(--mint); font-size: .65rem; font-weight: 820; letter-spacing: .12em; text-transform: uppercase; }
.cta-inner h2 { margin: 11px 0 14px; color: var(--white); font-size: clamp(2.3rem,4vw,4rem); }
.cta-inner p { margin: 0; color: #94aab1; }
.cta-actions { display: grid; gap: 12px; flex: 0 0 auto; }
.cta-email { display: flex; align-items: center; gap: 11px; color: #b3c5ca; }
.cta-email > svg { width: 21px; height: 21px; color: var(--mint); }
.cta-email span { display: grid; }
.cta-email small { color: #6f8991; font-size: .55rem; }
.cta-email strong { color: #cddcdf; font-size: .68rem; }
.site-footer { position: relative; overflow: hidden; padding: 78px 0 0; color: #91a7ae; background: #020d11; }
.footer-grid-bg { position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px); background-size: 70px 70px; mask-image: linear-gradient(to bottom,black,transparent 75%); }
.footer-top { position: relative; display: grid; grid-template-columns: 1.35fr .7fr .75fr 1fr; gap: 55px; padding-bottom: 58px; }
.footer-logo img { width: 190px; }
.footer-brand > p { max-width: 360px; margin: 23px 0; color: #718990; font-size: .78rem; }
.footer-ncti { width: fit-content; display: flex; align-items: center; gap: 12px; padding: 11px 13px; background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.08); border-radius: 13px; }
.footer-ncti > span { color: #617b83; font-size: .52rem; text-transform: uppercase; letter-spacing: .08em; }
.footer-ncti img { width: 67px; height: auto; opacity: .82; }
.footer-ncti svg { color: #708991; }
.footer-column h2 { margin-bottom: 20px; color: var(--white); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-column ul { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.footer-column li, .footer-column a { color: #718990; font-size: .69rem; transition: color var(--ease); }
.footer-column a:hover { color: var(--white); }
.footer-contact-list li, .footer-contact-list a { display: flex; align-items: flex-start; gap: 9px; }
.footer-contact-list svg { width: 16px; height: 16px; margin-top: 2px; color: var(--mint); }
.footer-bottom { position: relative; min-height: 66px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border-top: 1px solid rgba(255,255,255,.07); }
.footer-bottom p { margin: 0; color: #536b73; font-size: .59rem; }
.footer-bottom a { color: #788f96; }
.mobile-actions { display: none; }

/* Breadcrumbs and page heroes */
.breadcrumbs { padding-top: 21px; padding-bottom: 17px; }
.breadcrumbs ol { display: flex; align-items: center; flex-wrap: wrap; gap: 7px; margin: 0; padding: 0; list-style: none; }
.breadcrumbs li { display: flex; align-items: center; gap: 7px; color: #85949a; font-size: .64rem; }
.breadcrumbs li:last-child span { color: var(--ink); font-weight: 760; }
.breadcrumb-icon { width: 12px; height: 12px; color: #a5b0b4; }
.page-hero { position: relative; overflow: hidden; color: var(--white); background: linear-gradient(135deg,#06171c,#0b2b32); }
.page-hero::before { content: ""; position: absolute; width: 630px; height: 630px; right: -150px; top: -340px; border: 1px solid rgba(85,223,193,.18); border-radius: 50%; box-shadow: 0 0 0 85px rgba(85,223,193,.025),0 0 0 170px rgba(85,223,193,.018); }
.page-hero-noise { position: absolute; inset: 0; opacity: .25; background-image: linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px); background-size: 70px 70px; mask-image: linear-gradient(90deg,black,transparent 90%); }
.page-hero-layout { position: relative; min-height: 505px; display: grid; grid-template-columns: minmax(0,1fr) 360px; align-items: center; gap: 70px; padding-top: 60px; padding-bottom: 70px; }
.page-hero-copy h1 { max-width: 900px; margin-bottom: 22px; color: var(--white); font-size: clamp(3.2rem,5.5vw,5.45rem); }
.page-hero-copy h1 span { color: var(--mint); }
.page-hero-copy > p { max-width: 760px; margin: 0; color: #a4b8be; font-size: 1.02rem; }
.page-hero-aside { position: relative; }
.page-hero-about { background: linear-gradient(135deg,#06171c,#0c353c); }
.page-hero-services { background: linear-gradient(135deg,#06171c,#0b2f39 70%,#12525b); }
.page-hero-phone { background: linear-gradient(135deg,#07171d,#112d4d 70%,#14545b); }
.page-hero-blog { background: linear-gradient(135deg,#06171c,#183346); }
.page-hero-faq { background: linear-gradient(135deg,#06171c,#293148); }
.page-hero-network { background: linear-gradient(135deg,#06171c,#10414a); }
.page-hero-contact { background: linear-gradient(135deg,#06171c,#0b3940); }
.page-hero-legal { min-height: 390px; background: linear-gradient(135deg,#06171c,#25363d); }
.hero-fact-card, .hero-service-list, .hero-reading-card, .hero-question-card, .hero-network-card, .contact-hero-card, .ncti-hero-card { padding: 25px; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.12); border-radius: 22px; box-shadow: 0 28px 70px rgba(0,0,0,.18); backdrop-filter: blur(14px); }
.hero-fact-card > span, .hero-service-list > span, .hero-reading-card > span, .hero-question-card > span, .hero-network-card > span, .contact-hero-card > span, .ncti-hero-card > span { display: block; margin-bottom: 17px; color: #79929a; font-size: .58rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.hero-fact-card > div { display: grid; gap: 2px; padding: 13px 0; border-top: 1px solid rgba(255,255,255,.08); }
.hero-fact-card strong { color: var(--white); font-size: .85rem; }
.hero-fact-card small { color: #7a939b; font-size: .61rem; }
.hero-service-list > div { display: flex; align-items: center; gap: 10px; padding: 12px 0; border-top: 1px solid rgba(255,255,255,.08); }
.hero-service-list svg { width: 19px; height: 19px; color: var(--mint); }
.hero-service-list strong { color: #dce9ec; font-size: .72rem; }
.hero-reading-card, .hero-network-card { min-height: 220px; display: flex; flex-direction: column; justify-content: center; }
.hero-reading-card strong, .hero-network-card strong { color: var(--white); font-size: 1.45rem; line-height: 1.15; }
.hero-reading-card small, .hero-network-card small { margin-top: 6px; color: #819aa2; font-size: .66rem; }
.hero-reading-card > svg, .hero-network-card > svg { width: 42px; height: 42px; margin-top: 25px; color: var(--mint); }
.hero-question-card > svg { width: 34px; height: 34px; margin-bottom: 22px; color: var(--mint); }
.hero-question-card strong { display: block; color: var(--white); font-size: 1.25rem; }
.hero-question-card a { display: block; margin-top: 8px; color: var(--mint); font-size: .7rem; }

/* About */
.about-intro-section { background: var(--white); }
.about-intro-layout { display: grid; grid-template-columns: 1.04fr .96fr; align-items: center; gap: 90px; }
.about-prose { max-width: 720px; }
.about-prose p { font-size: .95rem; }
.about-manifesto { min-height: 420px; display: flex; flex-direction: column; justify-content: space-between; padding: 43px; color: var(--white); background: linear-gradient(145deg,#071a20,#0d343b); border-radius: 29px; box-shadow: var(--shadow-md); }
.about-manifesto > span { color: var(--mint); font-size: .63rem; letter-spacing: .12em; text-transform: uppercase; }
.about-manifesto blockquote { margin: auto 0; color: var(--white); font-size: clamp(1.75rem,3vw,2.65rem); font-weight: 820; line-height: 1.22; letter-spacing: -.04em; }
.about-manifesto small { color: #7f999f; font-size: .67rem; }
.approach-section { background: var(--paper); }
.approach-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: 45px; }
.section-index { color: #a6b5ba; font-size: .67rem; font-weight: 820; letter-spacing: .13em; }
.approach-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 14px; }
.approach-card { min-height: 330px; display: flex; flex-direction: column; padding: 27px; background: var(--white); border: 1px solid var(--line); border-radius: 21px; box-shadow: var(--shadow-sm); }
.approach-card > span { align-self: flex-end; color: #c4d0d3; font-size: 1.65rem; font-weight: 900; letter-spacing: -.06em; }
.approach-card > div { width: 51px; height: 51px; display: grid; place-items: center; margin: 35px 0 40px; color: var(--mint-dark); background: var(--mint-soft); border-radius: 15px; }
.approach-card svg { width: 25px; height: 25px; }
.approach-card h3 { margin-bottom: 12px; font-size: 1.2rem; }
.approach-card p { margin: auto 0 0; font-size: .76rem; }
.workbench-section { color: var(--white); background: var(--navy); }
.workbench-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 35px; margin-bottom: 45px; }
.photo-note { padding: 8px 11px; color: #8ea5ac; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 999px; font-size: .58rem; }
.workbench-gallery { display: grid; grid-template-columns: 1.25fr .75fr; grid-template-rows: repeat(2,260px); gap: 15px; }
.workbench-card { position: relative; overflow: hidden; margin: 0; background: #0c2730; border: 1px solid rgba(255,255,255,.09); border-radius: 22px; }
.workbench-main { grid-row: 1 / 3; }
.workbench-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.workbench-card:hover img { transform: scale(1.025); }
.workbench-card figcaption { position: absolute; inset: auto 15px 15px; display: grid; grid-template-columns: auto 1fr; column-gap: 10px; padding: 12px 14px; color: var(--white); background: rgba(4,18,22,.8); border: 1px solid rgba(255,255,255,.09); border-radius: 13px; backdrop-filter: blur(10px); }
.workbench-card figcaption > span { grid-row: 1 / 3; color: var(--mint); font-size: .65rem; font-weight: 850; }
.workbench-card figcaption strong { font-size: .74rem; }
.workbench-card figcaption small { color: #7f989f; font-size: .57rem; }
.equipment-section { background: var(--white); }
.equipment-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 85px; }
.equipment-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 13px; }
.equipment-item { display: flex; gap: 14px; padding: 21px; background: var(--paper); border: 1px solid var(--line); border-radius: 17px; }
.equipment-item > span { width: 46px; height: 46px; display: grid; place-items: center; color: var(--mint-dark); background: var(--mint-soft); border-radius: 13px; }
.equipment-item svg { width: 23px; height: 23px; }
.equipment-item h3 { margin-bottom: 7px; font-size: 1rem; }
.equipment-item p { margin: 0; font-size: .7rem; }

/* Services page */
.service-jumpbar { position: sticky; top: var(--header-height); z-index: 60; background: rgba(255,255,255,.94); border-bottom: 1px solid var(--line); box-shadow: 0 10px 28px rgba(6,23,28,.055); backdrop-filter: blur(16px); }
.service-jumpbar .container { min-height: 66px; display: flex; align-items: center; justify-content: center; gap: 3px; }
.service-jumpbar a { display: inline-flex; align-items: center; gap: 7px; padding: 9px 11px; color: #5c6f76; border-radius: 10px; font-size: .67rem; font-weight: 760; }
.service-jumpbar a:hover { color: var(--ink); background: var(--mint-soft); }
.service-jumpbar svg { width: 17px; height: 17px; color: var(--mint-dark); }
.services-detail-section { padding-top: 82px; background: var(--white); }
.service-detail { display: grid; grid-template-columns: 95px 1fr 390px; gap: 45px; padding: 65px 0; border-bottom: 1px solid var(--line); }
.service-detail:first-child { padding-top: 0; }
.service-detail-index > span { display: block; margin-bottom: 13px; color: #becbce; font-size: 2.2rem; font-weight: 900; letter-spacing: -.07em; }
.service-detail-index > div { width: 64px; height: 64px; display: grid; place-items: center; color: var(--mint-dark); background: var(--mint-soft); border-radius: 18px; }
.service-detail-index svg { width: 30px; height: 30px; }
.service-detail-copy h2 { max-width: 680px; margin-bottom: 17px; font-size: clamp(2rem,3.2vw,3.3rem); }
.service-detail-lead { max-width: 650px; margin-bottom: 27px; font-size: .96rem; }
.symptom-block > small { color: #8b999e; font-size: .58rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.symptom-block > div { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 10px; }
.symptom-block span { padding: 7px 10px; color: #50646b; background: var(--paper); border: 1px solid var(--line); border-radius: 999px; font-size: .62rem; }
.service-detail-scope { padding: 25px; background: var(--paper); border: 1px solid var(--line); border-radius: 20px; }
.service-detail-scope > small { color: var(--mint-dark); font-size: .61rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.service-detail-scope ul { display: grid; gap: 11px; margin: 17px 0 22px; padding: 0; list-style: none; }
.service-detail-scope li { display: flex; gap: 9px; color: #40555c; font-size: .7rem; }
.service-detail-scope li svg { width: 17px; height: 17px; color: var(--mint-dark); }
.service-outcome { display: flex; gap: 11px; padding: 13px; margin-bottom: 18px; background: var(--white); border: 1px solid var(--line); border-radius: 13px; }
.service-outcome > svg { width: 20px; height: 20px; color: var(--blue); }
.service-outcome span { display: grid; gap: 2px; }
.service-outcome strong { font-size: .67rem; }
.service-outcome small { color: var(--muted); font-size: .59rem; line-height: 1.4; }
.phone-handoff-section { background: var(--paper); }
.phone-handoff-shell { display: grid; grid-template-columns: 1.25fr .75fr; overflow: hidden; color: var(--white); background: linear-gradient(135deg,#08191f,#12384a); border-radius: 29px; box-shadow: var(--shadow-md); }
.phone-handoff-copy { padding: 55px; }
.phone-handoff-copy h2 { max-width: 760px; color: var(--white); font-size: clamp(2.2rem,3.8vw,3.7rem); }
.phone-handoff-copy p { max-width: 700px; color: #93aab1; }
.phone-handoff-brand { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 15px; padding: 45px; background: rgba(255,255,255,.04); border-left: 1px solid rgba(255,255,255,.09); }
.phone-handoff-brand > span { color: #6f8991; font-size: .59rem; letter-spacing: .12em; text-transform: uppercase; }
.phone-handoff-brand img { width: 200px; height: auto; }
.phone-handoff-brand small { color: #7c959c; font-size: .61rem; text-align: center; }
.phone-handoff-brand a { display: flex; align-items: center; gap: 8px; color: var(--mint); font-size: .76rem; font-weight: 800; }
.phone-handoff-brand a svg { width: 18px; height: 18px; }
.service-rules-section { background: var(--white); }
.service-rules-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 75px; }
.service-rules-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 13px; }
.rule-card { min-height: 230px; padding: 23px; background: var(--paper); border: 1px solid var(--line); border-radius: 18px; }
.rule-card > span { width: 49px; height: 49px; display: grid; place-items: center; margin-bottom: 38px; color: var(--mint-dark); background: var(--mint-soft); border-radius: 14px; }
.rule-card svg { width: 24px; height: 24px; }
.rule-card h3 { margin-bottom: 9px; font-size: 1.08rem; }
.rule-card p { margin: 0; font-size: .71rem; }

/* Phone page */
.ncti-hero-card { display: grid; justify-items: center; text-align: center; }
.ncti-hero-card img { width: 190px; height: auto; margin: 6px 0 13px; }
.ncti-hero-card small { color: #849ca3; font-size: .61rem; }
.ncti-hero-card a { display: flex; align-items: center; gap: 8px; margin-top: 15px; color: var(--mint); font-size: .78rem; font-weight: 800; }
.ncti-hero-card a svg { width: 18px; height: 18px; }
.phone-model-section { background: var(--white); }
.phone-model-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: 75px; align-items: center; }
.handoff-flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 11px; margin-top: 35px; }
.handoff-flow > div { min-height: 145px; display: flex; flex-direction: column; padding: 17px; background: var(--paper); border: 1px solid var(--line); border-radius: 16px; }
.handoff-flow > div > span { color: var(--mint-dark); font-size: .63rem; font-weight: 850; }
.handoff-flow strong { margin: auto 0 4px; font-size: .73rem; }
.handoff-flow small { color: var(--muted); font-size: .57rem; line-height: 1.4; }
.handoff-flow > i { color: #a4b3b7; }
.handoff-flow > i svg { width: 17px; height: 17px; }
.phone-model-note { min-height: 420px; display: flex; flex-direction: column; justify-content: center; padding: 42px; color: var(--white); background: linear-gradient(145deg,#081a20,#12364a); border-radius: 27px; box-shadow: var(--shadow-md); }
.phone-model-note > svg { width: 45px; height: 45px; margin-bottom: 40px; color: var(--mint); }
.phone-model-note span { color: var(--mint); font-size: .61rem; font-weight: 820; letter-spacing: .1em; text-transform: uppercase; }
.phone-model-note h3 { margin: 12px 0 17px; color: var(--white); font-size: clamp(1.7rem,2.7vw,2.45rem); }
.phone-model-note p { margin: 0; color: #8da4ac; }
.phone-services-section { background: var(--paper); }
.phone-services-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 13px; margin-top: 45px; }
.phone-service-card { min-height: 330px; display: flex; flex-direction: column; padding: 25px; background: var(--white); border: 1px solid var(--line); border-radius: 20px; box-shadow: var(--shadow-sm); }
.phone-service-card > span { width: 54px; height: 54px; display: grid; place-items: center; margin-bottom: 48px; color: var(--mint-dark); background: var(--mint-soft); border-radius: 15px; }
.phone-service-card svg { width: 26px; height: 26px; }
.phone-service-card h3 { margin-bottom: 10px; }
.phone-service-card p { font-size: .73rem; }
.phone-service-card small { margin-top: auto; padding-top: 18px; color: #92a1a6; border-top: 1px solid var(--line); font-size: .56rem; }
.locker-section { background: var(--white); }
.locker-shell { display: grid; grid-template-columns: 1.12fr .88fr; overflow: hidden; color: var(--white); background: linear-gradient(135deg,#06171c,#0e333a); border-radius: 31px; box-shadow: var(--shadow-md); }
.locker-copy { padding: 61px; }
.locker-copy h2 { color: var(--white); font-size: clamp(2.4rem,4.2vw,4.15rem); }
.locker-copy h2 span { color: var(--mint); }
.locker-copy > p { max-width: 680px; color: #91a9b0; }
.locker-address { display: flex; align-items: center; gap: 13px; margin-top: 27px; padding: 15px; background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.09); border-radius: 15px; }
.locker-address > span { width: 44px; height: 44px; display: grid; place-items: center; color: var(--mint); background: rgba(85,223,193,.08); border-radius: 12px; }
.locker-address svg { width: 22px; height: 22px; }
.locker-address div { display: grid; }
.locker-address small { color: #708991; font-size: .58rem; }
.locker-address strong { color: #dbe8eb; font-size: .74rem; }
.locker-visual { position: relative; display: grid; place-items: center; min-height: 600px; background: rgba(255,255,255,.035); border-left: 1px solid rgba(255,255,255,.09); }
.locker-visual::before, .locker-visual::after { content: ""; position: absolute; border: 1px solid rgba(85,223,193,.14); border-radius: 50%; }
.locker-visual::before { width: 430px; height: 430px; }.locker-visual::after { width: 300px; height: 300px; }
.locker-box { position: relative; z-index: 2; width: 230px; min-height: 330px; display: grid; grid-template-columns: repeat(2,1fr); gap: 7px; padding: 20px; color: var(--navy); background: var(--yellow); border-radius: 19px; box-shadow: 0 35px 70px rgba(0,0,0,.28); }
.locker-box > span { grid-column: 1 / 3; font-size: .7rem; font-weight: 900; }
.locker-box > strong { grid-column: 1 / 3; font-size: 1.4rem; }
.locker-box i { min-height: 78px; background: rgba(6,23,28,.12); border: 1px solid rgba(6,23,28,.16); border-radius: 8px; }
.locker-box small { grid-column: 1 / 3; align-self: end; font-size: .58rem; }
.locker-route { position: absolute; z-index: 3; left: 50%; bottom: 43px; display: flex; align-items: center; gap: 8px; padding: 8px 11px; color: #c6d6da; background: rgba(6,23,28,.86); border: 1px solid rgba(255,255,255,.1); border-radius: 999px; transform: translateX(-50%); font-size: .58rem; }
.locker-route svg { width: 15px; height: 15px; color: var(--mint); }
.packing-section { background: var(--paper); }
.packing-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; }
.packing-steps { display: grid; gap: 11px; }
.packing-step { display: grid; grid-template-columns: 55px 1fr; gap: 18px; padding: 20px; background: var(--white); border: 1px solid var(--line); border-radius: 17px; }
.packing-step > span { width: 50px; height: 50px; display: grid; place-items: center; color: var(--navy); background: var(--mint); border-radius: 14px; font-size: .68rem; font-weight: 900; }
.packing-step h3 { margin-bottom: 7px; font-size: 1.05rem; }
.packing-step p { margin: 0; font-size: .72rem; }
.direct-ncti-section { padding-top: 0; background: var(--paper); }
.direct-ncti-card { display: grid; grid-template-columns: 1.1fr 1fr .7fr auto; align-items: center; gap: 30px; padding: 24px; color: var(--white); background: var(--navy); border-radius: 21px; }
.direct-ncti-card > div:first-child { display: flex; align-items: center; gap: 18px; }
.direct-ncti-card > div:first-child span { color: #789198; font-size: .58rem; text-transform: uppercase; letter-spacing: .08em; }
.direct-ncti-card img { width: 115px; height: auto; }
.direct-ncti-card > div { display: grid; }
.direct-ncti-card small { color: #6f8990; font-size: .56rem; }
.direct-ncti-card strong, .direct-ncti-card > div > a:not(.button) { color: #dbe7ea; font-size: .72rem; }

/* Blog page */
.featured-post-section { background: var(--white); }
.featured-post { display: grid; grid-template-columns: 1.06fr .94fr; overflow: hidden; background: var(--paper); border: 1px solid var(--line); border-radius: 27px; box-shadow: var(--shadow-sm); }
.featured-visual .post-visual { min-height: 100%; }
.featured-copy { padding: 52px; }
.featured-copy h2 { margin-bottom: 18px; font-size: clamp(2.1rem,3.6vw,3.45rem); }
.featured-copy p { margin-bottom: 28px; }
.all-posts-section { background: var(--paper); }
.posts-toolbar { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; margin-bottom: 45px; }
.blog-filter-row { display: flex; gap: 6px; padding: 5px; background: var(--white); border: 1px solid var(--line); border-radius: 13px; }
.blog-filter-row button { padding: 9px 12px; color: #687a81; background: transparent; border: 0; border-radius: 9px; font-size: .65rem; font-weight: 760; }
.blog-filter-row button.active { color: var(--navy); background: var(--mint); }
.posts-grid-large { grid-template-columns: repeat(2,minmax(0,1fr)); }
.post-card-large { display: grid; grid-template-columns: .82fr 1.18fr; }
.post-card-large .post-visual { min-height: 100%; }

/* Article */
.article-hero { position: relative; overflow: hidden; color: var(--white); background: linear-gradient(135deg,#06171c,#0c343b); }
.article-hero-noise { position: absolute; inset: 0; opacity: .25; background-image: linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px); background-size: 65px 65px; }
.article-hero-layout { position: relative; min-height: 610px; display: grid; grid-template-columns: 1.12fr .88fr; align-items: center; gap: 75px; padding-top: 65px; padding-bottom: 80px; }
.post-meta-light { color: #829ba2; }
.article-hero-copy h1 { max-width: 860px; margin-bottom: 22px; color: var(--white); font-size: clamp(3rem,5vw,5rem); }
.article-hero-copy > p { max-width: 740px; color: #a0b5bb; font-size: 1rem; }
.article-author { display: flex; align-items: center; gap: 11px; margin-top: 27px; }
.article-author > span { width: 42px; height: 42px; display: grid; place-items: center; color: var(--navy); background: var(--mint); border-radius: 12px; font-size: .7rem; font-weight: 900; }
.article-author div { display: grid; }
.article-author strong { color: #e3ecee; font-size: .7rem; }
.article-author small { color: #718991; font-size: .58rem; }
.article-hero-visual .post-visual { min-height: 360px; border: 1px solid rgba(255,255,255,.1); border-radius: 24px; box-shadow: 0 35px 80px rgba(0,0,0,.25); }
.article-layout { display: grid; grid-template-columns: 260px minmax(0,760px); justify-content: center; gap: 70px; padding-top: 85px; padding-bottom: 110px; }
.article-sidebar { align-self: start; position: sticky; top: 118px; display: grid; gap: 15px; }
.toc, .article-help-card { padding: 20px; background: var(--white); border: 1px solid var(--line); border-radius: 17px; box-shadow: var(--shadow-sm); }
.toc > span { display: block; margin-bottom: 13px; color: #8c9ba0; font-size: .58rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.toc a { display: grid; grid-template-columns: 26px 1fr; gap: 7px; padding: 8px 0; color: #607178; border-top: 1px solid #e8edef; font-size: .63rem; line-height: 1.4; }
.toc a span { color: var(--mint-dark); font-size: .56rem; font-weight: 820; }
.article-help-card { color: var(--white); background: var(--navy); border-color: transparent; }
.article-help-card > svg { width: 28px; height: 28px; margin-bottom: 25px; color: var(--mint); }
.article-help-card h3 { margin-bottom: 8px; color: var(--white); font-size: 1.05rem; }
.article-help-card p { color: #81999f; font-size: .68rem; }
.article-help-card a { display: inline-flex; align-items: center; gap: 7px; color: var(--mint); font-size: .67rem; font-weight: 800; }
.article-content { min-width: 0; }
.article-intro { margin-bottom: 52px; color: #314950; font-size: 1.18rem; line-height: 1.75; }
.article-section { scroll-margin-top: 130px; margin-bottom: 52px; }
.article-section h2 { margin-bottom: 20px; font-size: clamp(1.8rem,3vw,2.65rem); }
.article-section p { font-size: .94rem; line-height: 1.8; }
.article-callout { display: flex; gap: 13px; margin-top: 25px; padding: 19px; background: #fff4e1; border: 1px solid #efd5a5; border-radius: 15px; }
.article-callout svg { width: 23px; height: 23px; color: #ae7110; }
.article-callout p { margin: 0; color: #70511f; font-size: .76rem; }
.article-summary { margin-top: 65px; padding: 34px; background: var(--navy); border-radius: 22px; }
.article-summary > span { color: var(--mint); font-size: .61rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.article-summary h2 { margin: 9px 0 23px; color: var(--white); }
.article-summary ul { display: grid; gap: 11px; margin: 0; padding: 0; list-style: none; }
.article-summary li { display: flex; gap: 9px; color: #abc0c6; font-size: .74rem; }
.article-summary li svg { width: 18px; height: 18px; color: var(--mint); }
.article-disclaimer { display: flex; gap: 12px; margin-top: 20px; padding: 17px; background: var(--white); border: 1px solid var(--line); border-radius: 14px; }
.article-disclaimer svg { width: 20px; height: 20px; color: var(--blue); }
.article-disclaimer p { margin: 0; font-size: .67rem; }
.related-posts-section { background: var(--white); }
.related-posts-section .section-heading { margin-bottom: 40px; }

/* FAQ */
.faq-section { background: var(--white); }
.faq-layout { display: grid; grid-template-columns: 250px minmax(0,760px); justify-content: center; gap: 75px; }
.faq-nav { position: sticky; top: 120px; align-self: start; display: grid; padding: 19px; background: var(--paper); border: 1px solid var(--line); border-radius: 16px; }
.faq-nav > span { margin-bottom: 10px; color: #93a1a6; font-size: .57rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.faq-nav a { padding: 10px 0; color: #607179; border-top: 1px solid var(--line); font-size: .68rem; font-weight: 720; }
.faq-nav a:hover { color: var(--mint-dark); }
.faq-groups { display: grid; gap: 65px; }
.faq-group-heading { display: grid; grid-template-columns: 54px 1fr; gap: 15px; margin-bottom: 22px; }
.faq-group-heading > span { width: 50px; height: 50px; display: grid; place-items: center; color: var(--navy); background: var(--mint); border-radius: 14px; font-size: .67rem; font-weight: 900; }
.faq-group-heading h2 { margin-bottom: 5px; font-size: 2rem; }
.faq-group-heading p { margin: 0; font-size: .7rem; }
.faq-item { background: var(--paper); border: 1px solid var(--line); border-radius: 15px; }
.faq-item + .faq-item { margin-top: 9px; }
.faq-item summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 19px; color: var(--ink); font-size: .82rem; font-weight: 790; list-style: none; cursor: pointer; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary svg { width: 18px; height: 18px; color: #8d9da2; transition: transform var(--ease); }
.faq-item[open] summary svg { transform: rotate(90deg); color: var(--mint-dark); }
.faq-item > div { padding: 0 19px 19px; }
.faq-item p { margin: 0; font-size: .74rem; }

/* Recommendations */
.recommend-intro-section { background: var(--white); }
.recommend-intro { display: grid; grid-template-columns: 1.15fr .85fr; gap: 75px; align-items: center; }
.recommend-rule { display: flex; gap: 14px; padding: 23px; background: var(--paper); border: 1px solid var(--line); border-radius: 18px; }
.recommend-rule > svg { width: 28px; height: 28px; color: var(--mint-dark); }
.recommend-rule p { display: grid; gap: 5px; margin: 0; }
.recommend-rule strong { color: var(--ink); font-size: .76rem; }
.recommend-rule span { color: var(--muted); font-size: .67rem; }
.recommendation-directory { background: var(--paper); }
.recommend-group + .recommend-group { margin-top: 90px; }
.recommend-group-heading { display: grid; grid-template-columns: 58px 1fr; gap: 17px; max-width: 750px; margin-bottom: 35px; }
.recommend-group-heading > span { width: 56px; height: 56px; display: grid; place-items: center; color: var(--mint-dark); background: var(--mint-soft); border-radius: 16px; }
.recommend-group-heading svg { width: 27px; height: 27px; }
.recommend-group-heading h2 { margin-bottom: 7px; font-size: 2.4rem; }
.recommend-group-heading p { margin: 0; font-size: .78rem; }
.recommend-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 13px; }
.recommend-card { min-height: 270px; display: flex; flex-direction: column; padding: 23px; background: var(--white); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-sm); transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease); }
.recommend-card:hover { transform: translateY(-4px); border-color: #b8cbcf; box-shadow: var(--shadow-md); }
.recommend-card > div { display: flex; align-items: center; gap: 10px; margin-bottom: 34px; }
.recommend-card > div > span { width: 39px; height: 39px; display: grid; place-items: center; color: var(--white); background: var(--navy); border-radius: 11px; font-size: .75rem; font-weight: 900; }
.recommend-card > div small { color: #93a1a6; font-size: .57rem; }
.recommend-card h3 { margin-bottom: 9px; font-size: 1.18rem; }
.recommend-card p { font-size: .69rem; }
.recommend-card > strong { display: inline-flex; align-items: center; gap: 7px; margin-top: auto; color: var(--mint-dark); font-size: .65rem; }

/* Contact */
.contact-hero-card { display: grid; gap: 9px; }
.contact-hero-card > a, .contact-hero-card > div { display: flex; align-items: center; gap: 11px; padding: 12px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 13px; }
.contact-hero-card > a > svg, .contact-hero-card > div > svg { width: 37px; height: 37px; padding: 9px; color: var(--mint); background: rgba(85,223,193,.08); border-radius: 10px; }
.contact-hero-card a div, .contact-hero-card > div div { display: grid; }
.contact-hero-card small { color: #708991; font-size: .55rem; }
.contact-hero-card strong { color: #dbe8eb; font-size: .7rem; }
.contact-card-note { margin-top: 5px; color: #708991 !important; line-height: 1.45; }
.contact-main-section { background: var(--paper); }
.contact-layout { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(300px,.85fr); gap: 28px; align-items: start; }
.contact-form-panel { padding: 42px; background: var(--white); border: 1px solid var(--line); border-radius: 25px; box-shadow: var(--shadow-md); }
.form-heading h2 { margin-bottom: 15px; font-size: clamp(2.2rem,3.8vw,3.55rem); }
.form-heading p { max-width: 650px; }
.contact-form { margin-top: 32px; }
.form-status { display: none; margin-bottom: 18px; padding: 13px; border-radius: 12px; font-size: .7rem; }
.form-status.error, .form-status.success { display: block; }
.form-status.error { color: #7a2630; background: #fde9ec; border: 1px solid #f1bdc4; }
.form-status.success { color: #225d51; background: var(--mint-soft); border: 1px solid #b9e9dd; }
.form-status a { text-decoration: underline; }
.honeypot { position: absolute; left: -9999px; }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 17px; }
.form-grid > label, .form-grid fieldset { display: grid; gap: 7px; margin: 0; padding: 0; border: 0; }
.form-grid label > span, .form-grid legend { color: #3e535a; font-size: .68rem; font-weight: 760; }
.form-grid input, .form-grid select, .form-grid textarea { width: 100%; color: var(--ink); background: var(--paper); border: 1px solid var(--line); border-radius: 12px; outline: none; transition: border-color var(--ease), box-shadow var(--ease), background var(--ease); }
.form-grid input, .form-grid select { min-height: 49px; padding: 0 13px; }
.form-grid textarea { padding: 13px; resize: vertical; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { background: var(--white); border-color: var(--mint-dark); box-shadow: 0 0 0 4px rgba(11,157,133,.1); }
.form-grid [aria-invalid="true"] { border-color: var(--danger); }
.form-grid label > small { min-height: 15px; color: var(--danger); font-size: .55rem; }
.form-full { grid-column: 1 / -1; }
.radio-row { display: flex; gap: 8px; }
.radio-row label { position: relative; }
.radio-row input { position: absolute; opacity: 0; pointer-events: none; }
.radio-row label span { display: inline-flex; min-width: 100px; justify-content: center; padding: 9px 14px; color: #607078; background: var(--paper); border: 1px solid var(--line); border-radius: 10px; cursor: pointer; }
.radio-row input:checked + span { color: var(--navy); background: var(--mint); border-color: var(--mint); }
.checkbox-label { grid-template-columns: 20px 1fr !important; align-items: start; column-gap: 9px !important; }
.checkbox-label input { width: 18px; min-height: 18px; margin-top: 2px; accent-color: var(--mint-dark); }
.checkbox-label > span { font-weight: 500 !important; line-height: 1.5; }
.checkbox-label > span a { color: var(--mint-dark); text-decoration: underline; }
.checkbox-label > small { grid-column: 2; }
.form-submit { position: relative; margin-top: 22px; border: 0; }
.submit-loader { display: none; width: 17px; height: 17px; border: 2px solid rgba(6,23,28,.2); border-top-color: var(--navy); border-radius: 50%; animation: spin .8s linear infinite; }
.form-submit.is-loading .button-icon { display: none; }
.form-submit.is-loading .submit-loader { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }
.form-fallback { margin: 14px 0 0; color: #87969c; font-size: .58rem; }
.form-fallback a { color: var(--mint-dark); }
.contact-sidebar { display: grid; gap: 14px; }
.contact-next, .urgent-note, .contact-ncti { padding: 24px; border-radius: 20px; }
.contact-next { background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.contact-next > span { color: var(--mint-dark); font-size: .62rem; font-weight: 820; letter-spacing: .1em; text-transform: uppercase; }
.contact-next ol { display: grid; gap: 15px; margin: 22px 0 0; padding: 0; list-style: none; }
.contact-next li { display: grid; grid-template-columns: 35px 1fr; gap: 10px; }
.contact-next li strong { width: 35px; height: 35px; display: grid; place-items: center; color: var(--navy); background: var(--mint); border-radius: 10px; font-size: .62rem; }
.contact-next li p { margin: 0; font-size: .67rem; }
.urgent-note { display: flex; gap: 13px; color: #724a14; background: #fff4dd; border: 1px solid #efd49c; }
.urgent-note > svg { width: 25px; height: 25px; }
.urgent-note h3 { margin-bottom: 8px; color: #5b3b12; font-size: 1rem; }
.urgent-note p { margin: 0; color: #7c5b2e; font-size: .66rem; }
.contact-ncti { color: var(--white); background: var(--navy); }
.contact-ncti > span { color: #6f8991; font-size: .57rem; text-transform: uppercase; letter-spacing: .1em; }
.contact-ncti img { width: 105px; height: auto; margin: 19px 0; }
.contact-ncti p { color: #81999f; font-size: .67rem; }
.contact-ncti a { display: inline-flex; align-items: center; gap: 7px; color: var(--mint); font-size: .66rem; font-weight: 800; }
.location-contact-section { background: var(--white); }
.location-contact-shell { display: grid; grid-template-columns: 1.15fr .85fr; overflow: hidden; color: var(--white); background: linear-gradient(135deg,#07191e,#0e363d); border-radius: 29px; }
.location-contact-copy { padding: 55px; }
.location-contact-copy h2 { color: var(--white); font-size: clamp(2.4rem,4vw,4rem); }
.location-contact-copy > p { max-width: 650px; color: #94aab0; }
.location-meta { display: flex; flex-wrap: wrap; gap: 9px; margin: 25px 0; }
.location-meta span { display: inline-flex; align-items: center; gap: 7px; padding: 8px 10px; color: #a9bec4; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 999px; font-size: .6rem; }
.location-meta svg { width: 15px; height: 15px; color: var(--mint); }
.location-contact-visual { position: relative; display: grid; place-items: center; min-height: 470px; background: rgba(255,255,255,.035); border-left: 1px solid rgba(255,255,255,.08); }
.location-radar { position: relative; width: 350px; height: 350px; border: 1px solid rgba(85,223,193,.16); border-radius: 50%; }
.location-radar i { position: absolute; inset: 14%; border: 1px solid rgba(85,223,193,.13); border-radius: 50%; }
.location-radar i:nth-child(2) { inset: 29%; }.location-radar i:nth-child(3) { inset: 44%; }
.location-radar::before { content: ""; position: absolute; left: 50%; top: 0; bottom: 0; width: 1px; background: rgba(85,223,193,.12); }
.location-radar::after { content: ""; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: rgba(85,223,193,.12); }
.location-radar > span { position: absolute; left: 50%; top: 50%; z-index: 2; width: 110px; height: 110px; display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--navy); background: var(--mint); border-radius: 50%; transform: translate(-50%,-50%); box-shadow: 0 20px 50px rgba(0,0,0,.25); }
.location-radar > span svg { width: 23px; height: 23px; }
.location-radar > span strong { font-size: .8rem; }
.location-radar > span small { font-size: .58rem; }

/* Legal and 404 */
.legal-section { background: var(--white); }
.legal-layout { display: grid; grid-template-columns: 230px minmax(0,760px); justify-content: center; gap: 70px; }
.legal-sidebar { align-self: start; position: sticky; top: 120px; }
.legal-toc { display: grid; padding: 18px; background: var(--paper); border: 1px solid var(--line); border-radius: 15px; }
.legal-toc > span { margin-bottom: 9px; color: #93a1a6; font-size: .56rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.legal-toc a { padding: 9px 0; color: #65767d; border-top: 1px solid var(--line); font-size: .64rem; }
.legal-content section { scroll-margin-top: 125px; margin-bottom: 45px; }
.legal-content section > span { color: var(--mint-dark); font-size: .64rem; font-weight: 850; }
.legal-content h2 { margin: 6px 0 16px; font-size: 2rem; }
.legal-content p { font-size: .88rem; }
.legal-content a { color: var(--mint-dark); text-decoration: underline; }
.not-found { position: relative; min-height: 760px; display: grid; place-items: center; overflow: hidden; color: var(--white); background: var(--navy); }
.not-found-grid { position: absolute; inset: 0; opacity: .3; background-image: linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px); background-size: 70px 70px; }
.not-found-inner { position: relative; text-align: center; }
.not-found-inner > span { color: var(--mint); font-size: 5rem; font-weight: 900; }
.not-found-inner h1 { color: var(--white); }
.not-found-inner p { color: #8fa6ad; }
.not-found-inner .hero-actions { justify-content: center; }

/* Responsive */
@media (max-width: 1180px) {
  :root { --container: 1080px; }
  .desktop-nav a { padding-inline: 8px; font-size: .75rem; }
  .header-cta { padding-inline: 15px; }
  .home-hero-layout { grid-template-columns: 1fr 420px; gap: 45px; }
  .hero-copy h1 { font-size: clamp(3.2rem,5.7vw,5rem); }
  .problem-card { grid-template-columns: 39px 1fr; }
  .problem-arrow { display: none; }
  .service-card-3, .service-card-4 { grid-column: span 6; }
  .service-card-phone { grid-column: span 12; min-height: 350px; }
  .partner-shell { grid-template-columns: .62fr 1.38fr; }
  .partner-copy-panel { padding: 50px; }
  .page-hero-layout { grid-template-columns: 1fr 320px; }
  .approach-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .phone-services-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .recommend-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .footer-top { grid-template-columns: 1.2fr .7fr .75fr .95fr; gap: 35px; }
}

@media (max-width: 1024px) {
  :root { --header-height: 72px; }
  .container { width: min(calc(100% - 36px), var(--container)); }
  .utility-inner { grid-template-columns: 1fr auto; }
  .utility-partner { display: none; }
  .desktop-nav, .header-cta { display: none; }
  .menu-button { display: inline-flex; margin-left: auto; }
  .home-hero-layout { grid-template-columns: 1fr; min-height: 0; padding-bottom: 70px; }
  .hero-copy { max-width: 800px; }
  .hero-console-wrap { max-width: 650px; width: 100%; margin-inline: auto; }
  .problem-dock { margin-bottom: -110px; }
  .problem-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .services-section { padding-top: 210px; }
  .process-layout, .local-layout, .web-partners-layout, .about-intro-layout, .equipment-layout, .service-rules-layout, .phone-model-layout, .packing-layout, .recommend-intro { grid-template-columns: 1fr; gap: 55px; }
  .partner-shell { grid-template-columns: 1fr; }
  .partner-brand-panel { min-height: 330px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.09); }
  .local-map { order: 2; min-height: 430px; }
  .page-hero-layout { grid-template-columns: 1fr; min-height: 0; gap: 38px; padding-top: 55px; padding-bottom: 65px; }
  .page-hero-aside { max-width: 620px; }
  .hero-fact-card, .hero-service-list, .hero-reading-card, .hero-question-card, .hero-network-card, .contact-hero-card, .ncti-hero-card { max-width: 620px; }
  .service-detail { grid-template-columns: 75px 1fr; }
  .service-detail-scope { grid-column: 2; }
  .phone-handoff-shell, .locker-shell, .location-contact-shell { grid-template-columns: 1fr; }
  .phone-handoff-brand, .locker-visual, .location-contact-visual { border-left: 0; border-top: 1px solid rgba(255,255,255,.09); }
  .locker-visual { min-height: 500px; }
  .featured-post { grid-template-columns: 1fr; }
  .featured-visual .post-visual { min-height: 360px; }
  .article-layout { grid-template-columns: 220px minmax(0,1fr); gap: 40px; }
  .article-hero-layout { grid-template-columns: 1fr; }
  .article-hero-visual { max-width: 700px; }
  .faq-layout, .legal-layout { grid-template-columns: 1fr; }
  .faq-nav, .legal-sidebar { position: static; }
  .faq-nav { display: flex; flex-wrap: wrap; gap: 5px; }
  .faq-nav > span { width: 100%; }
  .faq-nav a { padding: 8px 10px; border: 1px solid var(--line); border-radius: 999px; }
  .legal-toc { display: flex; flex-wrap: wrap; gap: 7px; }
  .legal-toc > span { width: 100%; }
  .legal-toc a { padding: 7px 9px; border: 1px solid var(--line); border-radius: 999px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-sidebar { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .footer-top { grid-template-columns: 1.2fr repeat(3,1fr); }
}

@media (max-width: 760px) {
  body { font-size: 15px; padding-bottom: 72px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 82px 0; }
  .utility-inner { min-height: 32px; }
  .utility-contact { display: none; }
  .utility-location { font-size: .64rem; }
  .brand img { width: 166px; }
  .site-header { height: 70px; }
  .mobile-menu { inset: 100% 0 auto; height: calc(100dvh - 102px); }
  .home-hero { padding-top: 62px; }
  .home-hero-layout { gap: 45px; padding-bottom: 55px; }
  .hero-copy h1 { font-size: clamp(3rem,14vw,4.4rem); }
  .hero-lead { font-size: .97rem; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-proof { grid-template-columns: 1fr; gap: 13px; }
  .hero-proof > div { padding-bottom: 11px; border-bottom: 1px solid rgba(255,255,255,.07); }
  .service-console { min-height: 0; padding: 15px; border-radius: 22px; }
  .console-device { grid-template-columns: 46px 1fr; }
  .console-device b { grid-column: 2; justify-self: start; }
  .console-progress { gap: 5px; margin-inline: 0; }
  .console-progress > div { min-width: 42px; }
  .console-progress > div small { font-size: .5rem; }
  .console-rule strong { font-size: .66rem; }
  .console-footer { align-items: flex-start; }
  .console-ncti { display: none; }
  .problem-dock { margin-bottom: -165px; padding: 12px; border-radius: 20px; }
  .problem-dock-heading { padding: 2px 3px 11px; }
  .problem-grid { grid-template-columns: 1fr; gap: 7px; }
  .problem-card { min-height: 72px; }
  .services-section { padding-top: 240px; }
  .services-header, .blog-preview-header, .workbench-header, .approach-header, .posts-toolbar { display: grid; align-items: start; }
  .services-header-note { width: auto; }
  .services-bento { grid-template-columns: 1fr; }
  .service-card-1, .service-card-2, .service-card-3, .service-card-4, .service-card-phone { grid-column: auto; min-height: 360px; }
  .service-card-top { margin-bottom: 34px; }
  .process-principles { grid-template-columns: 1fr; }
  .process-layout { gap: 45px; }
  .timeline-step { grid-template-columns: 47px 1fr; padding: 18px; }
  .timeline-number { width: 40px; height: 40px; }
  .partner-copy-panel, .partner-brand-panel, .locker-copy, .phone-handoff-copy, .location-contact-copy { padding: 34px 25px; }
  .partner-brand-panel { min-height: 280px; }
  .partner-use-cases { grid-template-columns: 1fr; }
  .local-map { min-height: 370px; }
  .map-node { font-size: .52rem; }
  .orbit-c { width: 400px; height: 400px; }
  .web-brand-card { grid-template-columns: 58px 1fr; padding: 20px; }
  .web-brand-symbol { width: 58px; height: 58px; border-radius: 16px; }
  .posts-grid, .posts-grid-large { grid-template-columns: 1fr; }
  .post-card-large { grid-template-columns: 1fr; }
  .reviews-shell { grid-template-columns: 1fr; gap: 35px; padding: 28px; }
  .cta-inner { display: grid; gap: 35px; }
  .cta-actions { width: 100%; }
  .cta-actions .button { width: 100%; }
  .footer-top { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 35px 25px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { display: grid; padding: 18px 0; }
  .page-hero-layout { padding-top: 48px; padding-bottom: 55px; }
  .page-hero-copy h1 { font-size: clamp(2.9rem,13vw,4.25rem); }
  .page-hero-copy > p { font-size: .93rem; }
  .about-manifesto { min-height: 350px; padding: 30px; }
  .approach-grid, .equipment-list, .service-rules-grid, .phone-services-grid { grid-template-columns: 1fr; }
  .workbench-gallery { grid-template-columns: 1fr; grid-template-rows: repeat(3,260px); }
  .workbench-main { grid-row: auto; }
  .service-jumpbar { overflow-x: auto; }
  .service-jumpbar .container { width: max-content; min-width: 100%; justify-content: flex-start; padding-inline: 14px; }
  .service-detail { grid-template-columns: 1fr; gap: 25px; padding: 50px 0; }
  .service-detail-index { display: flex; align-items: center; gap: 13px; }
  .service-detail-index > span { margin: 0; }
  .service-detail-scope { grid-column: auto; }
  .phone-handoff-brand { padding: 38px 25px; }
  .handoff-flow { grid-template-columns: 1fr; }
  .handoff-flow > i { transform: rotate(90deg); justify-self: center; }
  .phone-model-note { min-height: 360px; padding: 30px; }
  .locker-visual { min-height: 440px; }
  .packing-step { grid-template-columns: 48px 1fr; }
  .direct-ncti-card { grid-template-columns: 1fr; text-align: left; }
  .direct-ncti-card > div:first-child { justify-content: flex-start; }
  .featured-copy { padding: 30px; }
  .blog-filter-row { width: 100%; overflow-x: auto; }
  .article-hero-layout { padding-top: 50px; padding-bottom: 60px; }
  .article-hero-copy h1 { font-size: clamp(2.8rem,12vw,4.1rem); }
  .article-hero-visual .post-visual { min-height: 290px; }
  .article-layout { grid-template-columns: 1fr; padding-top: 60px; }
  .article-sidebar { position: static; }
  .toc { display: none; }
  .article-summary { padding: 25px; }
  .faq-group-heading { grid-template-columns: 45px 1fr; }
  .faq-group-heading > span { width: 43px; height: 43px; }
  .recommend-grid { grid-template-columns: 1fr; }
  .contact-form-panel { padding: 27px 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-full { grid-column: auto; }
  .contact-sidebar { grid-template-columns: 1fr; }
  .location-contact-visual { min-height: 390px; }
  .location-radar { width: 300px; height: 300px; }
  .mobile-actions { position: fixed; z-index: 150; left: 9px; right: 9px; bottom: 9px; height: 60px; display: grid; grid-template-columns: 1fr 1.35fr 1fr; padding: 5px; background: rgba(4,17,21,.95); border: 1px solid rgba(255,255,255,.13); border-radius: 18px; box-shadow: 0 18px 45px rgba(0,0,0,.3); backdrop-filter: blur(15px); }
  .mobile-actions a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; color: #a7bac0; border-radius: 13px; font-size: .52rem; }
  .mobile-actions svg { width: 18px; height: 18px; }
  .mobile-actions-primary { color: var(--navy) !important; background: var(--mint); font-weight: 800; }
}

@media (max-width: 440px) {
  .container { width: min(calc(100% - 22px), var(--container)); }
  .hero-copy h1 { font-size: 2.95rem; }
  .hero-kicker { font-size: .62rem; }
  .console-progress > div small { display: none; }
  .problem-dock { margin-bottom: -170px; }
  .services-section { padding-top: 245px; }
  .page-hero-copy h1 { font-size: 2.8rem; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .radio-row { display: grid; grid-template-columns: 1fr 1fr; }
  .radio-row label span { width: 100%; }
}

/* Oficjalny znak NCTI ma ciemny logotyp; jasna powierzchnia zachowuje jego czytelność na ciemnym tle. */
.console-ncti img,
.phone-partner-mini img,
.partner-brand-panel img,
.footer-ncti img,
.phone-handoff-brand img,
.ncti-hero-card img,
.direct-ncti-card img,
.contact-ncti img {
  object-fit: contain;
  background: #ffffff;
  border: 1px solid rgba(255,255,255,.82);
  border-radius: 10px;
  opacity: 1;
}
.console-ncti img { width: 84px; padding: 4px 7px; }
.phone-partner-mini img { width: 86px; padding: 5px 7px; }
.partner-brand-panel img { width: 260px; padding: 20px 25px; border-radius: 18px; box-shadow: 0 18px 45px rgba(0,0,0,.18); }
.footer-ncti img { width: 78px; padding: 5px 7px; }
.phone-handoff-brand img { width: 220px; padding: 17px 22px; border-radius: 16px; }
.ncti-hero-card img { width: 220px; padding: 17px 22px; border-radius: 16px; }
.direct-ncti-card img { width: 135px; padding: 9px 12px; }
.contact-ncti img { width: 126px; padding: 9px 12px; }
