/* ═══════════════════════════════════════════════════════════════
   SIC GCC — sicgcc.com
   ═══════════════════════════════════════════════════════════════ */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url('/fonts/inter-latin-wght-normal.woff2') format('woff2-variations');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
                 U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
                 U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  /* Corporate navy — deeper and less saturated than a "tech startup" blue */
  --navy-950: #050b16;
  --navy-900: #08152a;
  --navy-800: #0d2240;
  --navy-700: #143255;
  --navy-600: #1d4470;

  --accent:      #1f6fd0;   /* single restrained accent */
  --accent-dark: #17579f;
  --accent-soft: #eaf2fc;
  --accent-line: #c9ddf5;

  --ink:    #0d1523;
  --ink-2:  #414d61;
  --ink-3:  #6b7688;
  --ink-4:  #8f99a8;

  --line:   #e2e6ec;
  --line-2: #eef1f5;
  --bg:     #ffffff;
  --bg-alt: #f7f9fb;
  --bg-3:   #f0f3f7;

  --wrap: 1200px;
  --r:    6px;
  --r-lg: 10px;

  --sh-sm: 0 1px 2px rgba(13,21,35,.06);
  --sh:    0 2px 8px rgba(13,21,35,.07);
  --sh-lg: 0 16px 40px rgba(5,11,22,.13);

  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  --mono: ui-monospace, SFMono-Regular, 'SF Mono', Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'cv05' 1, 'ss01' 1;
  overflow-x: hidden;
}

img, svg { max-width: 100%; }
a { color: var(--accent-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 .5em;
  letter-spacing: -.021em;
  font-weight: 700;
}
h1 { font-size: clamp(2.15rem, 4.7vw, 3.4rem); font-weight: 800; letter-spacing: -.032em; }
h2 { font-size: clamp(1.65rem, 3.1vw, 2.25rem); letter-spacing: -.027em; }
h3 { font-size: 1.1rem; }
h4 { font-size: .95rem; }
p  { margin: 0 0 1rem; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--navy-800); color: #fff; padding: 12px 20px;
}
.skip:focus { left: 0; }

/* Small uppercase label above a heading */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .73rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase;
  color: var(--accent-dark); margin: 0 0 .85rem;
}
.eyebrow::before {
  content: ''; width: 22px; height: 1px; background: currentColor; opacity: .55;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font: 600 .92rem/1 var(--sans); letter-spacing: -.005em;
  padding: 13px 24px; border-radius: var(--r);
  border: 1px solid transparent; cursor: pointer; text-decoration: none;
  transition: background .16s, border-color .16s, color .16s, box-shadow .16s;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-dark); }
.btn--ghost { background: transparent; color: #d3e0f2; border-color: rgba(211,224,242,.30); }
.btn--ghost:hover { background: rgba(255,255,255,.07); border-color: rgba(211,224,242,.55); color: #fff; }
.btn--outline { background: #fff; color: var(--ink); border-color: var(--line); }
.btn--outline:hover { border-color: var(--ink-4); background: var(--bg-alt); }
.btn--sm { padding: 9px 17px; font-size: .86rem; }
.btn--lg { padding: 15px 30px; font-size: .97rem; }
.btn--block { width: 100%; }
.btn:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible,
textarea:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 2px;
}

/* ── Top bar ─────────────────────────────────────────────── */
.topbar {
  background: var(--navy-950); color: #8ea3bd; font-size: .8rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.topbar__inner { display: flex; align-items: center; justify-content: space-between; height: 38px; gap: 20px; }
.topbar a { color: #b6c8dd; }
.topbar a:hover { color: #fff; text-decoration: none; }
.topbar__meta { display: flex; gap: 22px; align-items: center; }
.topbar__meta span { display: inline-flex; align-items: center; gap: 7px; }
.topbar__meta svg { width: 13px; height: 13px; opacity: .8; }
@media (max-width: 760px) { .topbar__meta span:not(:first-child) { display: none; } }

/* ── Nav ─────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav.is-stuck { box-shadow: var(--sh-sm); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand__txt { font: 800 1.2rem/1 var(--sans); letter-spacing: -.035em; color: var(--navy-800); }
.brand__txt span { color: var(--accent); }
.brand__sub {
  display: block; font: 500 .61rem/1 var(--sans); letter-spacing: .15em;
  text-transform: uppercase; color: var(--ink-4); margin-top: 5px;
}

.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links > a:not(.btn) {
  font-size: .91rem; font-weight: 500; color: var(--ink-2); text-decoration: none;
  padding: 26px 0; position: relative;
}
.nav__links > a:not(.btn)::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: -1px; height: 2px;
  background: var(--accent); transition: right .2s;
}
.nav__links > a:not(.btn):hover { color: var(--ink); text-decoration: none; }
.nav__links > a:not(.btn):hover::after { right: 0; }

.nav__toggle {
  display: none; width: 42px; height: 42px; border: 1px solid var(--line);
  background: #fff; border-radius: var(--r); cursor: pointer;
  flex-direction: column; align-items: center; justify-content: center; gap: 4px;
}
.nav__toggle span { display: block; width: 17px; height: 1.5px; background: var(--ink); transition: transform .2s, opacity .16s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  background: var(--navy-900);
  color: #a9bdd6;
  padding: clamp(56px, 6.5vw, 84px) 0 clamp(56px, 6.5vw, 84px);
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 78% 8%, rgba(31,111,208,.22), transparent 62%),
    linear-gradient(180deg, transparent 55%, rgba(5,11,22,.55));
}
.hero__rule {
  position: absolute; inset: 0; pointer-events: none; opacity: .55;
  background-image: linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 120px 100%;
  mask-image: linear-gradient(180deg, #000, transparent 75%);
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 75%);
}
.hero__inner {
  position: relative; display: grid; grid-template-columns: 1.1fr .9fr;
  gap: clamp(32px, 5vw, 64px); align-items: center;
}
.hero .eyebrow { color: #6fa8ea; }
.hero h1 { color: #fff; margin-bottom: 1.15rem; }
.hero h1 em { font-style: normal; color: #6fa8ea; }
.lede { font-size: clamp(1rem, 1.35vw, 1.1rem); line-height: 1.72; color: #a3b8d2; max-width: 40em; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin: 2rem 0 0; }

.hero__proof {
  margin: 2.2rem 0 0; padding: 1.5rem 0 0;
  border-top: 1px solid rgba(255,255,255,.11);
  display: flex; flex-wrap: wrap; gap: 10px 22px; list-style: none;
  font-size: .825rem; color: #8ea3bd;
}
.hero__proof li { display: flex; align-items: center; gap: 8px; }
.hero__proof svg { width: 15px; height: 15px; color: #4d94e0; flex: none; }

/* hero side card */
.pill {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-lg); padding: 26px 28px;
  backdrop-filter: blur(6px);
}
.pill h3 { color: #fff; font-size: .95rem; margin-bottom: 18px; letter-spacing: -.01em; }
.pill__list { list-style: none; margin: 0; padding: 0; }
.pill__list li {
  display: flex; align-items: flex-start; gap: 11px; padding: 11px 0;
  font-size: .875rem; color: #b6c8dd;
}
.pill__list li + li { border-top: 1px solid rgba(255,255,255,.08); }
.pill__list b { display: block; color: #fff; font-weight: 600; font-size: .9rem; }
.pill__list span { font-size: .8rem; color: #7f96b2; }
.pill__ico {
  width: 30px; height: 30px; flex: none; border-radius: var(--r); display: grid; place-items: center;
  background: rgba(31,111,208,.2); color: #6fa8ea;
}
.pill__ico svg { width: 15px; height: 15px; }

/* ── Stats ───────────────────────────────────────────────── */
.stats { background: var(--navy-950); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 32px 24px; text-align: center; border-left: 1px solid rgba(255,255,255,.08); }
.stat:first-child { border-left: 0; }
.stat b {
  display: block; font-size: clamp(1.55rem, 2.8vw, 2rem); font-weight: 700;
  color: #fff; letter-spacing: -.035em;
}
.stat span { font-size: .8rem; color: #7f96b2; letter-spacing: .01em; }

/* ── Sections ────────────────────────────────────────────── */
.section { padding: clamp(60px, 7.5vw, 96px) 0; }
.section--alt { background: var(--bg-alt); border-block: 1px solid var(--line); }

.sechead { max-width: 660px; margin: 0 0 clamp(32px, 4vw, 48px); }
.sechead--center { margin-left: auto; margin-right: auto; text-align: center; }
.sechead--center .eyebrow { justify-content: center; }
.sechead h2 { margin-bottom: .65rem; }
.sechead__lede { font-size: 1.02rem; color: var(--ink-2); margin: 0; }

/* ── Service filter ──────────────────────────────────────── */
.filter {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px;
  border-bottom: 1px solid var(--line); padding-bottom: 22px;
}
.filter__btn {
  font: 600 .845rem/1 var(--sans); color: var(--ink-2);
  background: #fff; border: 1px solid var(--line); border-radius: 100px;
  padding: 9px 17px; cursor: pointer;
  transition: background .15s, border-color .15s, color .15s;
}
.filter__btn:hover { border-color: var(--ink-4); color: var(--ink); }
.filter__btn[aria-pressed="true"] {
  background: var(--navy-800); border-color: var(--navy-800); color: #fff;
}
.filter__count { color: var(--ink-4); font-weight: 500; }
.filter__btn[aria-pressed="true"] .filter__count { color: rgba(255,255,255,.6); }

/* ── Service cards ───────────────────────────────────────── */
/* Hairlines come from a ring on each card rather than a grid-gap background,
   so a partly-filled last row leaves white space, not grey blocks. */
.svcs { display: grid; grid-template-columns: repeat(auto-fill, minmax(272px, 1fr)); gap: 1px;
        background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.svc {
  background: #fff; padding: 26px 24px 24px;
  box-shadow: 0 0 0 1px var(--line);
  transition: background .16s;
  display: flex; flex-direction: column;
}
.svc:hover { background: var(--bg-alt); }
.svc[hidden] { display: none; }
.svc__ico {
  width: 38px; height: 38px; border-radius: var(--r); display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent-dark); margin-bottom: 15px;
  border: 1px solid var(--accent-line);
}
.svc__ico svg { width: 19px; height: 19px; }
.svc h3 { font-size: 1rem; margin-bottom: .4rem; letter-spacing: -.015em; }
.svc p { font-size: .875rem; line-height: 1.62; color: var(--ink-3); margin: 0; }
.svc__tag {
  margin-top: auto; padding-top: 16px;
  font: 600 .67rem/1 var(--sans); letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-4);
}

.svcs__empty { display: none; padding: 40px; text-align: center; color: var(--ink-3); background: #fff; }

/* ── Credibility strip ───────────────────────────────────── */
.creds { background: #fff; border-block: 1px solid var(--line); padding: 34px 0; }
.creds__label {
  text-align: center; font-size: .74rem; font-weight: 600; letter-spacing: .13em;
  text-transform: uppercase; color: var(--ink-4); margin-bottom: 22px;
}
.creds__row {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: 14px 12px;
}
.cred {
  display: inline-flex; align-items: center; gap: 9px;
  border: 1px solid var(--line); border-radius: 100px; padding: 9px 18px;
  font-size: .84rem; font-weight: 500; color: var(--ink-2); background: var(--bg-alt);
}
.cred svg { width: 15px; height: 15px; color: var(--accent); flex: none; }

/* ── Projects ────────────────────────────────────────────── */
.proj {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(30px, 4.5vw, 58px);
  align-items: start; padding: clamp(32px, 4.5vw, 48px) 0;
}
.proj + .proj { border-top: 1px solid var(--line); }
.proj--rev .proj__media { order: 2; }
.proj__media { position: sticky; top: 100px; }
.proj__lede { font-size: 1rem; color: var(--ink-2); margin-bottom: 1.6rem; }
.proj h3 { font-size: clamp(1.4rem, 2.4vw, 1.75rem); margin-bottom: .55rem; letter-spacing: -.028em; }

.feat { display: grid; grid-template-columns: repeat(auto-fit, minmax(228px, 1fr)); gap: 18px 26px; }
.feat__item h4 { margin-bottom: .25rem; color: var(--ink); }
.feat__item p { font-size: .865rem; line-height: 1.58; color: var(--ink-3); margin: 0; }

.chips { list-style: none; display: flex; flex-wrap: wrap; gap: 7px; padding: 0; margin: 24px 0 0; }
.chips li {
  font: 500 .755rem/1 var(--mono); color: var(--ink-3); background: #fff;
  border: 1px solid var(--line); border-radius: 4px; padding: 7px 11px;
}

/* project mockups */
.mock { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg); border: 1px solid var(--line); background: #fff; }
.mock--dark { border-color: rgba(255,255,255,.09); background: var(--navy-950); }
.mock__bar { display: flex; gap: 6px; padding: 11px 14px; background: var(--navy-800); border-bottom: 1px solid rgba(255,255,255,.07); }
.mock__bar--light { background: var(--bg-3); border-bottom-color: var(--line); }
.mock__bar i { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.2); }
.mock__bar--light i { background: #ccd4e0; }
.mock__body { padding: 18px; }
.mock__body--light { background: var(--bg-alt); padding: 15px; }
.mock__row { display: flex; gap: 8px; margin-bottom: 13px; }
.tag { font: 500 .72rem/1 var(--mono); padding: 6px 10px; border-radius: 4px; background: rgba(255,255,255,.06); color: #8ea3bd; }
.tag--up { background: rgba(70,185,116,.14); color: #55c281; }
.spark { width: 100%; height: 86px; display: block; }
.mock__bars { display: flex; align-items: flex-end; gap: 5px; height: 52px; margin-top: 11px; }
.mock__bars i { flex: 1; background: linear-gradient(180deg, #2b7ad4, #123456); border-radius: 2px 2px 0 0; }

.erp { display: flex; gap: 11px; min-height: 205px; }
.erp__side { width: 38px; background: var(--navy-800); border-radius: var(--r); padding: 11px 7px; display: flex; flex-direction: column; gap: 8px; }
.erp__side span { height: 7px; border-radius: 2px; background: rgba(255,255,255,.15); }
.erp__side span.on { background: var(--accent); }
.erp__main { flex: 1; display: flex; flex-direction: column; gap: 11px; }
.erp__kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 7px; }
.kpi { background: #fff; border: 1px solid var(--line); border-radius: 5px; padding: 9px; }
.kpi b { display: block; font-size: .8rem; font-weight: 700; color: var(--navy-800); letter-spacing: -.02em; }
.kpi em { font-style: normal; font-size: .62rem; color: var(--ink-4); }
.erp__tbl { background: #fff; border: 1px solid var(--line); border-radius: 5px; padding: 9px; flex: 1; }
.erp__tbl .tr { display: grid; grid-template-columns: 2fr 1fr 1fr .7fr; gap: 7px; padding: 6px 2px; }
.erp__tbl .tr + .tr { border-top: 1px solid var(--line-2); }
.erp__tbl .tr span { height: 6px; border-radius: 2px; background: #eaeef4; }
.erp__tbl .th span { background: #ccd4e0; }
.erp__tbl .tr:nth-child(3) span:last-child { background: #b5ddc4; }
.erp__tbl .tr:nth-child(5) span:last-child { background: #f2d7a6; }

/* ── Process ─────────────────────────────────────────────── */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(232px, 1fr)); gap: 0; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.step { padding: 28px 26px; background: #fff; border-left: 1px solid var(--line); }
.step:first-child { border-left: 0; }
.step__n { font: 700 .72rem/1 var(--mono); color: var(--accent); letter-spacing: .08em; }
.step h3 { margin: .7rem 0 .4rem; font-size: 1.02rem; }
.step p { font-size: .875rem; margin: 0; color: var(--ink-3); line-height: 1.6; }

/* ── Stack ───────────────────────────────────────────────── */
.stack { display: grid; grid-template-columns: repeat(auto-fit, minmax(196px, 1fr)); gap: 22px; }
.stack__col { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 22px; }
.stack__col h3 {
  font-size: .74rem; text-transform: uppercase; letter-spacing: .12em; color: var(--accent-dark);
  margin-bottom: 13px; padding-bottom: 11px; border-bottom: 1px solid var(--line-2); font-weight: 600;
}
.stack__col ul { list-style: none; margin: 0; padding: 0; }
.stack__col li { font-size: .89rem; color: var(--ink-2); padding: 4px 0; }

/* ── About ───────────────────────────────────────────────── */
.about__copy { max-width: 760px; }
.about__copy p { font-size: 1rem; }
.about__points {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(224px, 1fr)); gap: 22px;
  margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--line);
}
.about__points b { display: block; color: var(--ink); font-size: .94rem; margin-bottom: 3px; }
.about__points span { font-size: .865rem; color: var(--ink-3); }

/* ── Contact ─────────────────────────────────────────────── */
.section--contact { background: var(--navy-900); color: #a3b8d2; }
.section--contact h2 { color: #fff; }
.section--contact .eyebrow { color: #6fa8ea; }
.contact { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(32px, 4.5vw, 60px); align-items: start; }
.contact__intro p { color: #8ea3bd; }
.contact__meta { list-style: none; margin: 30px 0 0; padding: 0; display: grid; gap: 18px; }
.contact__meta li { display: flex; gap: 14px; align-items: flex-start; }
.contact__ico {
  width: 38px; height: 38px; flex: none; border-radius: var(--r); display: grid; place-items: center;
  background: rgba(31,111,208,.16); color: #6fa8ea; border: 1px solid rgba(111,168,234,.2);
}
.contact__ico svg { width: 17px; height: 17px; }
.contact__meta b { display: block; color: #fff; font-size: .875rem; font-weight: 600; }
.contact__meta span, .contact__meta a { font-size: .865rem; color: #8ea3bd; }
.contact__meta a { color: #6fa8ea; }

.form { background: #fff; border-radius: var(--r-lg); padding: clamp(24px, 3vw, 34px); box-shadow: var(--sh-lg); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.field { margin-bottom: 15px; }
.field label { display: block; font-size: .82rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
.field label i { color: #c8372d; font-style: normal; }
.field input, .field select, .field textarea {
  width: 100%; font: 400 .93rem var(--sans); color: var(--ink);
  padding: 11px 13px; border: 1px solid #d5dae2; border-radius: var(--r); background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.field textarea { resize: vertical; min-height: 112px; }
.field input::placeholder, .field textarea::placeholder { color: #a6afbd; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(31,111,208,.13);
}
.field.is-bad input, .field.is-bad textarea, .field.is-bad select { border-color: #c8372d; }
.field .err { display: block; font-size: .77rem; color: #c8372d; margin-top: 5px; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

#submitBtn { margin-top: 5px; }
#submitBtn[disabled] { opacity: .7; cursor: progress; }
.btn__spin { display: none; width: 14px; height: 14px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.4); border-top-color: #fff; animation: spin .7s linear infinite; }
#submitBtn.is-busy .btn__spin { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

.form__note { font-size: .78rem; color: var(--ink-4); text-align: center; margin: 12px 0 0; }
.form__status { margin-top: 14px; padding: 13px 16px; border-radius: var(--r); font-size: .88rem; display: none; }
.form__status.is-ok  { display: block; background: #e9f6ed; color: #15612e; border: 1px solid #b6e0c3; }
.form__status.is-err { display: block; background: #fdecea; color: #9d2b22; border: 1px solid #f4c4bf; }

/* ── Footer ──────────────────────────────────────────────── */
.foot { background: var(--navy-950); color: #7f96b2; padding: 52px 0 0; }
.foot__inner { display: grid; grid-template-columns: 1.15fr 2fr; gap: 40px; padding-bottom: 38px; }
.foot .brand__txt { color: #fff; }
.foot .brand__sub { color: #61748c; }
.foot__brand p { font-size: .87rem; margin: 14px 0 0; max-width: 30em; color: #7f96b2; }
.foot__nav { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.foot__nav h4 { color: #fff; font-size: .74rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 13px; font-weight: 600; }
.foot__nav a { display: block; font-size: .855rem; color: #7f96b2; padding: 4px 0; }
.foot__nav a:hover { color: #fff; text-decoration: none; }
.foot__base {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  padding: 18px 28px; border-top: 1px solid rgba(255,255,255,.08); font-size: .8rem; color: #61748c;
}

/* ── Reveal ──────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity .5s ease, transform .5s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1000px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__panel { display: none; }
  .proj, .proj--rev .proj__media { grid-template-columns: 1fr; order: 0; }
  .proj__media { position: static; }
  .contact { grid-template-columns: 1fr; }
  .foot__inner { grid-template-columns: 1fr; }
  .foot__nav { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3) { border-left: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.08); }
  .step { border-left: 0; border-top: 1px solid var(--line); }
  .step:first-child { border-top: 0; }
}

@media (max-width: 860px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; inset: 72px 0 auto; display: none; flex-direction: column;
    align-items: stretch; gap: 0; background: #fff; padding: 10px 28px 22px;
    border-bottom: 1px solid var(--line); box-shadow: var(--sh);
    max-height: calc(100vh - 72px); overflow-y: auto;
  }
  .nav__links.is-open { display: flex; }
  .nav__links > a:not(.btn) { padding: 14px 0; border-bottom: 1px solid var(--line-2); font-size: 1rem; }
  .nav__links > a:not(.btn)::after { display: none; }
  .nav__links .btn { margin-top: 14px; }
}

@media (max-width: 620px) {
  .wrap { padding: 0 20px; }
  .form__row { grid-template-columns: 1fr; }
  .hero__cta .btn { flex: 1 1 100%; }
  .foot__base { padding: 18px 20px; }
}

/* ═══════════════════════════════════════════════════════════════
   COMVEX — multi-page additions
   ═══════════════════════════════════════════════════════════════ */

:root {
  --accent:      #2f6fe0;
  --accent-dark: #1f56b4;
  --accent-soft: #eaf1fd;
  --accent-line: #c7dbf7;
  --navy-950: #060f1e;
  --navy-900: #0c1c33;
  --navy-800: #12294a;
}

.brand__sub { letter-spacing: .14em; }

/* ── Mega menu ───────────────────────────────────────────────── */
.has-mega { position: relative; }
.has-mega > a { display: inline-flex; align-items: center; gap: 5px; }
.caret { width: 13px; height: 13px; transition: transform .18s; }
.has-mega:hover .caret, .has-mega:focus-within .caret { transform: rotate(180deg); }

.mega {
  position: absolute; left: 50%; top: 100%; transform: translateX(-50%) translateY(6px);
  width: min(920px, calc(100vw - 48px));
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--sh-lg); padding: 0; opacity: 0; visibility: hidden;
  transition: opacity .16s, transform .16s, visibility .16s; z-index: 120;
}
.has-mega:hover .mega, .has-mega:focus-within .mega {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.mega__inner { padding: 0; max-width: none; }
.mega__grid {
  list-style: none; margin: 0; padding: 18px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}
.mega__grid a {
  display: flex; gap: 12px; padding: 12px 13px; border-radius: var(--r);
  text-decoration: none; transition: background .14s;
}
.mega__grid a:hover { background: var(--bg-alt); text-decoration: none; }
.mega__ico {
  width: 32px; height: 32px; flex: none; border-radius: 6px; display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent-dark); border: 1px solid var(--accent-line);
}
.mega__ico svg { width: 16px; height: 16px; }
.mega__grid b { display: block; font-size: .88rem; color: var(--ink); font-weight: 650; }
.mega__grid em {
  display: block; font-style: normal; font-size: .77rem; color: var(--ink-3);
  line-height: 1.45; margin-top: 2px;
}
.mega__foot {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  padding: 14px 20px; background: var(--bg-alt); border-top: 1px solid var(--line);
  border-radius: 0 0 var(--r-lg) var(--r-lg); font-size: .84rem; color: var(--ink-3);
}
.mega__foot a { font-weight: 600; }
@media (max-width: 860px) {
  .mega { position: static; transform: none; opacity: 1; visibility: visible;
          width: auto; box-shadow: none; border: 0; border-radius: 0; }
  .mega__grid { grid-template-columns: 1fr; padding: 4px 0 12px; }
  .mega__foot { display: none; }
  .caret { display: none; }
}

/* ── Breadcrumbs ─────────────────────────────────────────────── */
.crumbs { background: var(--bg-alt); border-bottom: 1px solid var(--line); font-size: .82rem; }
.crumbs .wrap { display: flex; align-items: center; gap: 8px; padding-block: 12px; flex-wrap: wrap; }
.crumbs a { color: var(--ink-3); }
.crumbs a:hover { color: var(--accent-dark); }
.crumbs i { color: var(--ink-4); font-style: normal; }
.crumbs span { color: var(--ink); font-weight: 600; }

/* ── Page hero (inner pages) ─────────────────────────────────── */
.phero {
  background: var(--navy-900); color: #a9bdd6; position: relative; overflow: hidden;
  padding: clamp(48px, 6vw, 76px) 0;
}
.phero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 70% at 82% 0%, rgba(47,111,224,.22), transparent 62%);
}
.phero__inner { position: relative; max-width: 860px; }
.phero .eyebrow { color: #74aaf0; }
.phero h1 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: .9rem; }
.phero .lede { color: #a3b8d2; }
.phero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 1.8rem; }
.phero__note { font-size: .84rem; color: #7f96b2; margin: 1.1rem 0 0; }
.phero--product h1 { font-size: clamp(2.1rem, 5vw, 3.2rem); }

/* ── Home: category cards ────────────────────────────────────── */
.ccards { display: grid; grid-template-columns: repeat(auto-fill, minmax(288px, 1fr)); gap: 1px;
          background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.ccard {
  background: #fff; padding: 26px 24px; text-decoration: none;
  box-shadow: 0 0 0 1px var(--line); display: flex; flex-direction: column;
  transition: background .16s;
}
.ccard:hover { background: var(--bg-alt); text-decoration: none; }
.ccard__ico {
  width: 40px; height: 40px; border-radius: var(--r); display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent-dark); border: 1px solid var(--accent-line);
  margin-bottom: 15px;
}
.ccard__ico svg { width: 20px; height: 20px; }
.ccard h3 { font-size: 1.02rem; margin-bottom: .4rem; }
.ccard p { font-size: .87rem; color: var(--ink-3); margin: 0 0 14px; line-height: 1.6; }
.ccard__n {
  margin-top: auto; font: 600 .7rem/1 var(--sans); letter-spacing: .09em;
  text-transform: uppercase; color: var(--accent-dark);
}

/* ── Home: product cards ─────────────────────────────────────── */
.prods { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 22px; }
.prod {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 28px; text-decoration: none; display: flex; flex-direction: column;
  transition: border-color .16s, box-shadow .16s;
}
.prod:hover { border-color: var(--accent-line); box-shadow: var(--sh); text-decoration: none; }
.prod__tag {
  font: 600 .7rem/1 var(--sans); letter-spacing: .1em; text-transform: uppercase;
  color: var(--accent-dark); margin-bottom: 12px;
}
.prod h3 { font-size: 1.5rem; letter-spacing: -.03em; margin-bottom: .55rem; }
.prod p { font-size: .93rem; color: var(--ink-2); margin-bottom: 14px; }
.prod__meta {
  font-size: .82rem; color: var(--ink-3); padding-top: 14px;
  border-top: 1px solid var(--line-2); margin-top: auto;
}
.prod__go {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 12px;
  font-size: .88rem; font-weight: 650; color: var(--accent-dark);
}
.prod__go svg { width: 15px; height: 15px; }

/* ── Services index: category rows ───────────────────────────── */
.catrow { padding: 34px 0; border-top: 1px solid var(--line); }
.catrow:first-child { border-top: 0; padding-top: 0; }
.catrow__head { display: flex; gap: 18px; align-items: flex-start; margin-bottom: 18px; }
.catrow__ico {
  width: 46px; height: 46px; flex: none; border-radius: var(--r); display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent-dark); border: 1px solid var(--accent-line);
}
.catrow__ico svg { width: 22px; height: 22px; }
.catrow h2 { font-size: 1.35rem; margin-bottom: .4rem; }
.catrow h2 a { color: var(--ink); }
.catrow h2 a:hover { color: var(--accent-dark); text-decoration: none; }
.catrow__head p { font-size: .93rem; color: var(--ink-3); margin: 0; max-width: 62em; }
.catrow__list {
  list-style: none; margin: 0 0 16px; padding: 0 0 0 64px;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 6px 20px;
}
.catrow__list a {
  font-size: .875rem; color: var(--ink-2); display: block; padding: 5px 0 5px 15px;
  position: relative;
}
.catrow__list a::before {
  content: ''; position: absolute; left: 0; top: 13px; width: 5px; height: 5px;
  border-radius: 50%; background: var(--accent);
}
.catrow__list a:hover { color: var(--accent-dark); }
.catrow__go {
  margin-left: 64px; display: inline-flex; align-items: center; gap: 7px;
  font-size: .87rem; font-weight: 650;
}
.catrow__go svg { width: 15px; height: 15px; }
@media (max-width: 700px) {
  .catrow__list, .catrow__go { padding-left: 0; margin-left: 0; }
}

/* ── Jump nav ────────────────────────────────────────────────── */
.jump {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  padding-bottom: 24px; margin-bottom: 30px; border-bottom: 1px solid var(--line);
}
.jump > span {
  font: 600 .72rem/1 var(--sans); letter-spacing: .11em; text-transform: uppercase;
  color: var(--ink-4); margin-right: 6px;
}
.jump a {
  font-size: .83rem; font-weight: 550; color: var(--ink-2);
  border: 1px solid var(--line); border-radius: 100px; padding: 7px 14px;
  background: #fff;
}
.jump a:hover { border-color: var(--accent); color: var(--accent-dark); text-decoration: none; }

/* ── Service detail blocks ───────────────────────────────────── */
.sblocks { display: grid; gap: 22px; }
.sblock {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 30px 30px 26px; scroll-margin-top: 110px;
}
.sblock__head { display: flex; gap: 17px; align-items: flex-start; margin-bottom: 20px; }
.sblock__ico {
  width: 44px; height: 44px; flex: none; border-radius: var(--r); display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent-dark); border: 1px solid var(--accent-line);
}
.sblock__ico svg { width: 21px; height: 21px; }
.sblock h3 { font-size: 1.22rem; margin-bottom: .4rem; letter-spacing: -.022em; }
.sblock__head p { font-size: .94rem; color: var(--ink-2); margin: 0; max-width: 64em; }
.sblock__list {
  list-style: none; margin: 0; padding: 20px 0 0; border-top: 1px solid var(--line-2);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 9px 26px;
}
.sblock__list li { display: flex; gap: 10px; align-items: flex-start; font-size: .875rem; color: var(--ink-2); }
.sblock__list svg { width: 15px; height: 15px; flex: none; color: var(--accent); margin-top: 4px; }
.sblock__more {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 18px;
  font-size: .88rem; font-weight: 650;
}
.sblock__more svg { width: 15px; height: 15px; }

/* ── Prev / next ─────────────────────────────────────────────── */
.prevnext { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pn {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 18px 22px; text-decoration: none; transition: border-color .16s;
}
.pn:hover { border-color: var(--accent-line); text-decoration: none; }
.pn span { display: block; font-size: .73rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-4); margin-bottom: 4px; }
.pn b { color: var(--ink); font-size: .97rem; }
.pn--next { text-align: right; }
@media (max-width: 620px) { .prevnext { grid-template-columns: 1fr; } .pn--next { text-align: left; } }

/* ── Why / numbered reasons ──────────────────────────────────── */
.why { display: grid; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); gap: 26px; }
.why__item { border-top: 2px solid var(--accent); padding-top: 18px; }
.why__n { font: 700 .74rem/1 var(--mono); color: var(--accent); letter-spacing: .08em; }
.why__item h3 { font-size: 1.05rem; margin: .6rem 0 .4rem; }
.why__item p { font-size: .88rem; color: var(--ink-3); margin: 0; line-height: 1.62; }

/* ── Feature grid ────────────────────────────────────────────── */
.fgrid { display: grid; grid-template-columns: repeat(auto-fit, minmax(282px, 1fr)); gap: 1px;
         background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.fgrid__item { background: #fff; padding: 24px 22px; box-shadow: 0 0 0 1px var(--line); }
.fgrid__item h4 { font-size: .97rem; margin-bottom: .4rem; color: var(--ink); }
.fgrid__item p { font-size: .865rem; color: var(--ink-3); margin: 0; line-height: 1.62; }

/* ── Pricing plans ───────────────────────────────────────────── */
.plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 20px; align-items: start; }
.plans--two { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); max-width: 860px; margin: 0 auto; }
.plan {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 28px 26px; position: relative;
}
.plan--featured { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(47,111,224,.10); }
.plan__flag {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff; font: 600 .72rem/1 var(--sans);
  padding: 7px 15px; border-radius: 100px; white-space: nowrap; letter-spacing: .01em;
}
.plan__top { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; }
.plan__top h3 { font-size: 1.3rem; margin: 0; letter-spacing: -.028em; }
.plan__badge {
  font: 600 .71rem/1 var(--sans); color: var(--accent-dark); background: var(--accent-soft);
  border: 1px solid var(--accent-line); border-radius: 100px; padding: 6px 11px;
}
.plan__price { display: flex; align-items: baseline; gap: 7px; flex-wrap: wrap; margin-bottom: 12px; }
.plan__price b { font-size: 1.85rem; font-weight: 750; color: var(--ink); letter-spacing: -.035em; }
.plan__price span { font-size: .9rem; color: var(--ink-3); }
.plan__price em { font-style: normal; font-size: .8rem; color: var(--ink-4); }
.plan__sum { font-size: .875rem; color: var(--ink-3); margin-bottom: 18px; line-height: 1.6; min-height: 3.2em; }
.plan__list { list-style: none; margin: 20px 0 0; padding: 18px 0 0; border-top: 1px solid var(--line-2); display: grid; gap: 9px; }
.plan__list li { display: flex; gap: 9px; align-items: flex-start; font-size: .855rem; line-height: 1.5; }
.plan__list svg { width: 14px; height: 14px; flex: none; margin-top: 4px; }
.plan__list .yes { color: var(--ink-2); }
.plan__list .yes svg { color: #1f9d55; }
.plan__list .no { color: var(--ink-4); }
.plan__list .no svg { color: var(--ink-4); }
.plans__note {
  max-width: 720px; margin: 28px auto 0; text-align: center;
  font-size: .84rem; color: var(--ink-3); line-height: 1.65;
}

/* ── ERP tier table ──────────────────────────────────────────── */
.tiers { display: grid; grid-template-columns: 1.25fr .75fr; gap: 26px; align-items: start; }
.tiertable {
  width: 100%; border-collapse: collapse; background: #fff;
  border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
}
.tiertable caption {
  caption-side: bottom; text-align: left; font-size: .82rem; color: var(--ink-3);
  padding: 14px 4px 0;
}
.tiertable th, .tiertable td { text-align: left; padding: 17px 22px; border-bottom: 1px solid var(--line-2); }
.tiertable thead th {
  background: var(--bg-alt); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-3); font-weight: 600;
}
.tiertable tbody th { font-size: .96rem; color: var(--ink); font-weight: 600; }
.tiertable tbody th em {
  font-style: normal; font-size: .7rem; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent-dark); background: var(--accent-soft); border: 1px solid var(--accent-line);
  border-radius: 100px; padding: 3px 9px; margin-left: 8px; vertical-align: middle;
}
.tiertable td b { font-size: 1.15rem; font-weight: 750; color: var(--ink); letter-spacing: -.02em; }
.tiertable tbody tr:last-child th, .tiertable tbody tr:last-child td { border-bottom: 0; }
.tiertable tr.is-best { background: #f4f9ff; }

.tiers__side { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px 22px; }
.tiers__side h3 { font-size: .78rem; letter-spacing: .11em; text-transform: uppercase; color: var(--accent-dark); margin-bottom: 13px; }
.tiers__side h3 + ul { margin-bottom: 22px; }
.tiers__side ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.tiers__side ul li { display: flex; gap: 9px; align-items: flex-start; font-size: .86rem; color: var(--ink-2); }
.tiers__side ul svg { width: 14px; height: 14px; flex: none; margin-top: 4px; color: #1f9d55; }
.tiers__extras li { display: block; padding: 11px 0; border-top: 1px solid var(--line-2); }
.tiers__extras li b { display: inline-block; font-size: 1rem; color: var(--ink); margin-right: 8px; }
.tiers__extras li span { font-size: .88rem; color: var(--ink-2); }
.tiers__extras li em { display: block; font-style: normal; font-size: .77rem; color: var(--ink-4); margin-top: 2px; }
.tiers__side .btn { margin-top: 18px; }
.tiers__note { font-size: .79rem; color: var(--ink-4); margin: 14px 0 0; line-height: 1.6; }
@media (max-width: 880px) { .tiers { grid-template-columns: 1fr; } }

/* ── Licensed modules ────────────────────────────────────────── */
.lmods { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px; }
.lmod { display: flex; gap: 15px; align-items: flex-start; background: #fff;
        border: 1px solid var(--line); border-radius: var(--r-lg); padding: 20px 20px; }
.lmod__n { font: 700 .82rem/1 var(--mono); color: var(--accent); padding-top: 3px; flex: none; }
.lmod h3 { font-size: .99rem; margin-bottom: .3rem; }
.lmod p { font-size: .85rem; color: var(--ink-3); margin: 0; line-height: 1.55; }

/* ── ERP modules (detail) ────────────────────────────────────── */
.mods { display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); gap: 20px; }
.mod { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px 24px; }
.mod h3 {
  font-size: .78rem; letter-spacing: .11em; text-transform: uppercase; color: var(--accent-dark);
  padding-bottom: 12px; margin-bottom: 15px; border-bottom: 1px solid var(--line-2);
}
.mod ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.mod li { display: flex; gap: 10px; align-items: flex-start; font-size: .865rem; color: var(--ink-2); line-height: 1.55; }
.mod svg { width: 14px; height: 14px; flex: none; color: var(--accent); margin-top: 4px; }

/* ── Signup split ────────────────────────────────────────────── */
.signup { display: grid; grid-template-columns: .9fr 1.1fr; gap: 34px; align-items: start; }
.signup .sechead { margin-bottom: 1rem; }
.signup > div > p { font-size: .94rem; color: var(--ink-2); }
.signup__cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.signup__card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px 22px; }
.signup__card h3 { font-size: 1.02rem; margin-bottom: .45rem; }
.signup__card p { font-size: .86rem; color: var(--ink-3); margin-bottom: 18px; min-height: 3em; }
@media (max-width: 880px) { .signup { grid-template-columns: 1fr; } }

/* ── CTA band ────────────────────────────────────────────────── */
.cta { background: var(--navy-900); color: #a3b8d2; padding: clamp(44px, 5.5vw, 68px) 0; }
.cta__inner { display: flex; gap: 32px; align-items: center; justify-content: space-between; flex-wrap: wrap; }
.cta h2 { color: #fff; margin-bottom: .5rem; font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
.cta p { margin: 0; max-width: 46em; font-size: .95rem; color: #8ea3bd; }
.cta__btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Contact page ────────────────────────────────────────────── */
.section--contact .contact__intro h1 { color: #fff; font-size: clamp(1.8rem, 3.6vw, 2.5rem); }
.contact__apps {
  margin-top: 30px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12);
}
.contact__apps p { font-size: .8rem; letter-spacing: .09em; text-transform: uppercase; color: #6f86a3; margin-bottom: 10px; }
.contact__apps a {
  display: inline-flex; align-items: center; gap: 7px; font-size: .88rem;
  color: #74aaf0; margin-right: 20px;
}
.contact__apps svg { width: 14px; height: 14px; }

/* ── Footer tweaks ───────────────────────────────────────────── */
.foot__brand .brand { margin-bottom: 14px; }
.foot__brand .brand__txt { color: #fff; }
.foot__nav { grid-template-columns: repeat(4, 1fr); }
.foot__addr { font-size: .84rem; margin-top: 14px; }
.foot__addr a { color: #8fb4e4; }
@media (max-width: 1000px) { .foot__nav { grid-template-columns: repeat(2, 1fr); } }

/* ── Misc ────────────────────────────────────────────────────── */
.topbar__region { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
@media (max-width: 620px) { .topbar__region { font-size: .74rem; } }
.nav__links a.is-active { color: var(--ink); }
.nav__links a.is-active::after { right: 0; }

/* change-request rows: price must not wrap mid-figure */
.tiers__extras li {
  display: grid; grid-template-columns: auto 1fr; gap: 2px 14px; align-items: baseline;
}
.tiers__extras li b { white-space: nowrap; margin: 0; grid-row: span 2; align-self: center; }
.tiers__extras li span { grid-column: 2; }
.tiers__extras li em { grid-column: 2; margin-top: 0; }

/* per-user licensing block on the ERP pricing page */
.peruser {
  background: var(--accent-soft); border: 1px solid var(--accent-line);
  border-radius: var(--r); padding: 18px 18px 16px; margin-bottom: 22px;
}
.peruser h3 { color: var(--accent-dark); margin-bottom: 10px; }
.peruser__price { display: flex; align-items: baseline; gap: 7px; margin: 0 0 2px; flex-wrap: wrap; }
.peruser__price b { font-size: 1.4rem; font-weight: 750; color: var(--ink); letter-spacing: -.03em; }
.peruser__price span { font-size: .84rem; color: var(--ink-3); }
.peruser__min {
  display: inline-block; font: 600 .7rem/1 var(--sans); letter-spacing: .08em;
  text-transform: uppercase; color: var(--accent-dark); background: #fff;
  border: 1px solid var(--accent-line); border-radius: 100px; padding: 4px 10px; margin: 6px 0 10px;
}
.peruser__note { font-size: .8rem; color: var(--ink-2); margin: 0; line-height: 1.55; }

/* ── Page hero with artwork ──────────────────────────────────── */
.phero--art { padding-block: clamp(40px, 5vw, 64px); }
.phero__split {
  position: relative; display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 4vw, 56px); align-items: center;
}
.phero__split .phero__inner { max-width: none; }
.phero__art {
  margin: 0; border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 44px rgba(3,8,18,.42);
  line-height: 0; background: var(--navy-950);
}
.phero__art .art, .phero__art img { display: block; width: 100%; height: auto; }
@media (max-width: 900px) {
  .phero__split { grid-template-columns: 1fr; }
  .phero__art { max-width: 520px; }
}

/* Small artwork tile, used on the services index and home cards */
.artlet { border-radius: var(--r); overflow: hidden; line-height: 0; border: 1px solid var(--line); }
.artlet .art, .artlet img { display: block; width: 100%; height: auto; }

/* ── Feature tour ────────────────────────────────────────────── */
.tour { display: grid; grid-template-columns: 260px 1fr; gap: 26px; align-items: start; }
.tour__tabs { display: flex; flex-direction: column; gap: 2px; }
.tour__tab {
  display: flex; align-items: baseline; gap: 11px; text-align: left; width: 100%;
  font: 600 .89rem/1.4 var(--sans); color: var(--ink-2);
  background: transparent; border: 0; border-left: 2px solid var(--line);
  padding: 13px 16px; cursor: pointer; transition: background .15s, color .15s, border-color .15s;
}
.tour__tab:hover { background: var(--bg-alt); color: var(--ink); }
.tour__tab[aria-selected="true"] {
  background: var(--accent-soft); color: var(--accent-dark); border-left-color: var(--accent);
}
.tour__n { font: 700 .7rem/1 var(--mono); color: var(--ink-4); flex: none; }
.tour__tab[aria-selected="true"] .tour__n { color: var(--accent); }

.tour__stage { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.tour__slide { margin: 0; }
.tour__slide[hidden] { display: none; }
.tour__svg, .tour__slide img { display: block; width: 100%; height: auto; background: var(--navy-950); }
.tour__slide figcaption { padding: 22px 26px 24px; border-top: 1px solid var(--line); }
.tour__slide figcaption h3 { font-size: 1.08rem; margin-bottom: .4rem; }
.tour__slide figcaption p { font-size: .9rem; color: var(--ink-3); margin: 0; line-height: 1.62; max-width: 62em; }

.tour__nav {
  display: flex; align-items: center; justify-content: flex-end; gap: 10px;
  padding: 12px 20px; border-top: 1px solid var(--line-2); background: var(--bg-alt);
}
.tour__arrow {
  width: 34px; height: 34px; border: 1px solid var(--line); background: #fff;
  border-radius: var(--r); cursor: pointer; display: grid; place-items: center; color: var(--ink-2);
}
.tour__arrow:hover { border-color: var(--accent); color: var(--accent-dark); }
.tour__arrow svg { width: 15px; height: 15px; }
.tour__count { font: 500 .8rem/1 var(--mono); color: var(--ink-4); margin-right: auto; }
.tour__count b { color: var(--ink-2); }

/* Sits under the stage, in the second grid column, so it reads as a footnote
   to the screens rather than to the tab list. */
.tour__note {
  grid-column: 2; margin: 10px 0 0; font-size: .78rem; line-height: 1.6;
  color: var(--ink-4); max-width: 60em;
}

@media (max-width: 900px) {
  .tour { grid-template-columns: 1fr; }
  .tour__note { grid-column: 1; }
  .tour__tabs { flex-direction: row; overflow-x: auto; gap: 6px; padding-bottom: 6px; }
  .tour__tab {
    border-left: 0; border-bottom: 2px solid var(--line); white-space: nowrap;
    padding: 10px 14px; border-radius: var(--r) var(--r) 0 0;
  }
  .tour__tab[aria-selected="true"] { border-left: 0; border-bottom-color: var(--accent); }
}

/* ── Book a demo ─────────────────────────────────────────────── */
.demo { display: grid; grid-template-columns: 1.15fr .85fr; gap: 24px; align-items: start; max-width: 960px; margin: 0 auto; }
.demo__what, .demo__book { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px 26px; }
.demo__book { border-color: var(--accent-line); box-shadow: 0 0 0 3px rgba(47,111,224,.07); }
.demo h3 { font-size: 1.05rem; margin-bottom: 16px; }
.demo__what ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.demo__what li { display: flex; gap: 10px; align-items: flex-start; font-size: .89rem; color: var(--ink-2); line-height: 1.55; }
.demo__what svg { width: 15px; height: 15px; flex: none; color: #1f9d55; margin-top: 4px; }
.demo__meta {
  margin: 20px 0 0; padding-top: 16px; border-top: 1px solid var(--line-2);
  font-size: .82rem; color: var(--ink-4);
}
.demo__book p { font-size: .88rem; color: var(--ink-3); margin-bottom: 18px; }
.demo__book .btn + .btn { margin-top: 10px; }
.demo__note { font-size: .8rem; color: var(--ink-4); margin: 16px 0 0; text-align: center; }
@media (max-width: 820px) { .demo { grid-template-columns: 1fr; } }

/* stack note under the technology columns */
.stacknote {
  margin: 20px 0 0; font-size: .84rem; color: var(--ink-3); line-height: 1.65; max-width: 62em;
}
