/* ==========================================================================
   ANTURICS / Pulsonics — shared marketing stylesheet
   Brand palette taken from the official logo files:
     #093F95  brand blue
     #51504F  dark grey
     #939598  mid grey
   Per-site accent is overridden in the :root block of each site.
   ========================================================================== */

/* --------------------------------------------------------------- tokens -- */
:root {
  --brand:        #093F95;
  --brand-dark:   #062C6B;
  --brand-darker: #041E4A;
  --brand-light:  #2D7DF6;
  --brand-wash:   #EEF3FC;
  --brand-wash-2: #DFE9FA;

  --accent:       #00A88E;
  --accent-wash:  #E6F7F4;

  --ink:          #12182B;
  --ink-2:        #3C4657;
  --ink-3:        #6B7689;
  --ink-4:        #9AA3B2;

  --line:         #E3E8F0;
  --line-2:       #EDF1F7;
  --bg:           #FFFFFF;
  --bg-2:         #F7F9FC;
  --bg-3:         #F0F4FA;

  --radius:    14px;
  --radius-lg: 22px;
  --radius-sm: 9px;

  --shadow-sm: 0 1px 2px rgba(9, 26, 60, .06), 0 2px 6px rgba(9, 26, 60, .05);
  --shadow:    0 2px 4px rgba(9, 26, 60, .05), 0 12px 28px rgba(9, 26, 60, .09);
  --shadow-lg: 0 4px 10px rgba(9, 26, 60, .06), 0 28px 60px rgba(9, 26, 60, .16);

  --maxw: 1180px;
  --gut:  24px;

  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
          "Helvetica Neue", Arial, sans-serif;

  --ease: cubic-bezier(.22, .8, .3, 1);
}

/* ------------------------------------------------------------- baseline -- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, video { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 {
  color: var(--ink);
  font-weight: 700;
  letter-spacing: -.022em;
  line-height: 1.15;
  margin: 0 0 .5em;
}

/* German compound nouns (Umsatzsteuer-Identifikationsnummer, Auftrags-
   verarbeitungsvertrag) are long enough to overflow a narrow phone. Let long
   words break rather than push the page sideways. */
h1, h2, h3, h4, p, li, address, summary, label, td, th {
  overflow-wrap: break-word;
  word-break: normal;
}
.legal { hyphens: auto; }
h1 { font-size: clamp(2.2rem, 1.35rem + 3.1vw, 3.85rem); letter-spacing: -.032em; }
h2 { font-size: clamp(1.75rem, 1.25rem + 1.9vw, 2.65rem); letter-spacing: -.028em; }
h3 { font-size: clamp(1.18rem, 1.05rem + .5vw, 1.4rem); }
h4 { font-size: 1.02rem; }

p { margin: 0 0 1.1em; }
p:last-child, ul:last-child, ol:last-child { margin-bottom: 0; }

a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

strong { color: var(--ink); font-weight: 650; }

:focus-visible {
  outline: 3px solid var(--brand-light);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--brand); color: #fff;
  padding: 12px 20px; border-radius: 0 0 var(--radius-sm) 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* --------------------------------------------------------------- layout -- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gut);
}
.wrap-narrow { max-width: 760px; }

section { padding-block: clamp(56px, 7vw, 104px); }
.section-tight { padding-block: clamp(40px, 5vw, 68px); }

.center { text-align: center; }
.center .lede { margin-inline: auto; }

/* section intro */
.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
}
.on-dark .eyebrow { color: #8FB6F5; }

.lede {
  font-size: clamp(1.04rem, .99rem + .24vw, 1.2rem);
  color: var(--ink-3);
  max-width: 62ch;
}
.on-dark .lede { color: #B7C6DE; }

.section-head { max-width: 720px; margin-bottom: clamp(36px, 4.5vw, 60px); }
.section-head.center { margin-inline: auto; }

/* --------------------------------------------------------------- header -- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 1px 20px rgba(9, 26, 60, .06);
}
.site-header .wrap {
  display: flex; align-items: center; gap: 20px;
  min-height: 74px;
}

.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand:hover { text-decoration: none; }
.brand img { height: 30px; width: auto; }

.nav { margin-left: auto; display: flex; align-items: center; gap: 4px; }
.nav a {
  color: var(--ink-2);
  font-size: .95rem;
  font-weight: 550;
  padding: 9px 13px;
  border-radius: var(--radius-sm);
  transition: background .18s var(--ease), color .18s var(--ease);
}
.nav a:hover { background: var(--bg-3); color: var(--ink); text-decoration: none; }
.nav a[aria-current="page"] { color: var(--brand); }
.nav .btn { margin-left: 8px; }

/* mobile nav */
.nav-toggle {
  margin-left: auto;
  display: none;
  width: 42px; height: 42px;
  align-items: center; justify-content: center;
  background: none; border: 1px solid var(--line);
  border-radius: var(--radius-sm); cursor: pointer;
  color: var(--ink);
}
.nav-toggle span {
  display: block; position: relative;
  width: 18px; height: 2px; border-radius: 2px; background: currentColor;
  transition: transform .25s var(--ease), background .15s;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: ""; position: absolute; left: 0;
  width: 18px; height: 2px; border-radius: 2px; background: currentColor;
  transition: transform .25s var(--ease), top .25s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed; inset: 74px 0 auto;
    flex-direction: column; align-items: stretch; gap: 2px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 14px var(--gut) 22px;
    box-shadow: var(--shadow);
    transform: translateY(-8px);
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
    max-height: calc(100vh - 74px); overflow-y: auto;
  }
  .nav.is-open { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
  .nav a { padding: 13px 12px; font-size: 1.02rem; }
  .nav .btn { margin: 10px 0 0; justify-content: center; }
}

/* -------------------------------------------------------------- buttons -- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: inherit; font-size: .96rem; font-weight: 600; line-height: 1;
  padding: 14px 24px;
  border: 1px solid transparent; border-radius: 999px;
  cursor: pointer; text-align: center; white-space: nowrap;
  transition: background .18s var(--ease), border-color .18s var(--ease),
              color .18s var(--ease), transform .18s var(--ease),
              box-shadow .18s var(--ease);
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--brand); color: #fff; box-shadow: 0 6px 18px rgba(9, 63, 149, .26); }
.btn-primary:hover { background: var(--brand-dark); box-shadow: 0 10px 26px rgba(9, 63, 149, .32); }

.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink-4); background: var(--bg-2); }

.btn-on-dark { background: rgba(255, 255, 255, .1); color: #fff; border-color: rgba(255, 255, 255, .28); }
.btn-on-dark:hover { background: rgba(255, 255, 255, .18); border-color: rgba(255, 255, 255, .5); }

.btn-white { background: #fff; color: var(--brand); }
.btn-white:hover { background: var(--brand-wash); }

.btn-lg { padding: 17px 32px; font-size: 1.02rem; }
.btn-sm { padding: 10px 18px; font-size: .88rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.center .btn-row { justify-content: center; }

.arrow-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 600; font-size: .95rem; color: var(--brand);
}
.arrow-link svg { transition: transform .2s var(--ease); flex-shrink: 0; }
.arrow-link:hover { text-decoration: none; }
.arrow-link:hover svg { transform: translateX(3px); }

/* ------------------------------------------------------- store badges --- */
.store-badges { display: flex; flex-wrap: wrap; gap: 12px; }

.store-badge {
  display: inline-flex; align-items: center; gap: 11px;
  padding: 10px 20px 10px 16px;
  background: var(--ink); color: #fff;
  border: 1px solid var(--ink);
  border-radius: 12px;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease);
}
.store-badge:hover {
  text-decoration: none; transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(9, 26, 60, .22);
}
.store-badge svg { width: 24px; height: 24px; flex-shrink: 0; }
.store-badge span { display: block; line-height: 1.25; }
.store-badge .sb-small { font-size: .66rem; letter-spacing: .06em; text-transform: uppercase; opacity: .8; }
.store-badge .sb-big { font-size: .98rem; font-weight: 600; letter-spacing: -.01em; }

.on-dark .store-badge { background: #fff; color: var(--ink); border-color: #fff; }

/* ---------------------------------------------------------------- cards -- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 980px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease),
              transform .2s var(--ease);
}
.card h3 { margin-bottom: .4em; }
.card p { color: var(--ink-3); font-size: .97rem; }

a.card:hover, .card-hover:hover {
  text-decoration: none;
  border-color: var(--brand-wash-2);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.card-icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--brand-wash); color: var(--brand);
  margin-bottom: 18px;
}
.card-icon svg { width: 23px; height: 23px; }

.on-dark .card {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .12);
}
.on-dark .card h3 { color: #fff; }
.on-dark .card p { color: #B7C6DE; }
.on-dark .card-icon { background: rgba(255, 255, 255, .1); color: #9CC0FA; }

/* ------------------------------------------------------ product cards --- */
.product-card {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease),
              transform .2s var(--ease);
}
.product-card:hover {
  border-color: var(--brand-wash-2);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.product-card .pc-top {
  display: flex; align-items: center; gap: 14px; margin-bottom: 18px;
}
.product-card .pc-mark {
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: 13px;
  display: grid; place-items: center;
  background: var(--brand-wash); color: var(--brand);
}
.product-card .pc-mark svg { width: 26px; height: 26px; }
.product-card h3 { margin: 0; }
.product-card .pc-kicker {
  font-size: .78rem; font-weight: 650; letter-spacing: .07em;
  text-transform: uppercase; color: var(--ink-4);
}
.product-card p { color: var(--ink-3); font-size: .97rem; flex-grow: 1; }
.product-card .pc-foot { margin-top: 22px; }

/* ------------------------------------------------------------- sectors --
   ANTURICS operates in three sectors. Each gets its own accent, kept inside
   the brand's blue-teal family so the three read as one company.           */
.sector-health   { --sector: #093F95; --sector-wash: #EEF3FC; }
.sector-aviation { --sector: #0E7FA8; --sector-wash: #E8F4F9; }
.sector-business { --sector: #00806C; --sector-wash: #E6F5F2; }

.sector-card {
  display: flex; flex-direction: column;
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 30px 30px;
  overflow: hidden;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease),
              transform .2s var(--ease);
}
.sector-card::before {
  content: ""; position: absolute; inset: 0 0 auto; height: 4px;
  background: var(--sector, var(--brand));
}
.sector-card:hover {
  text-decoration: none;
  border-color: var(--sector, var(--brand));
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.sector-card .sc-mark {
  width: 54px; height: 54px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--sector-wash, var(--brand-wash));
  color: var(--sector, var(--brand));
  margin-bottom: 20px;
}
.sector-card .sc-mark svg { width: 27px; height: 27px; }
.sector-card h3 { margin-bottom: .35em; }
.sector-card > p { color: var(--ink-3); font-size: .97rem; }

.sector-card .sc-products {
  list-style: none; margin: 20px 0 0; padding: 18px 0 0;
  border-top: 1px solid var(--line-2);
  display: grid; gap: 9px; flex-grow: 1;
}
.sector-card .sc-products li {
  font-size: .93rem; color: var(--ink-2);
  display: flex; align-items: baseline; gap: 9px;
}
.sector-card .sc-products li::before {
  content: ""; flex-shrink: 0;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--sector, var(--brand));
  transform: translateY(-2px);
}
.sector-card .sc-products b { color: var(--ink); font-weight: 650; }
.sector-card .sc-foot { margin-top: 24px; }
.sector-card .arrow-link { color: var(--sector, var(--brand)); }

/* sector accent applied to a whole page section */
.sector-health .eyebrow,
.sector-aviation .eyebrow,
.sector-business .eyebrow { color: var(--sector); }
.sector-health .card-icon,
.sector-aviation .card-icon,
.sector-business .card-icon {
  background: var(--sector-wash); color: var(--sector);
}
.sector-health .btn-primary,
.sector-aviation .btn-primary,
.sector-business .btn-primary {
  background: var(--sector); box-shadow: none;
}
.sector-health .pc-mark,
.sector-aviation .pc-mark,
.sector-business .pc-mark {
  background: var(--sector-wash); color: var(--sector);
}
.sector-aviation .hero-grad {
  background:
    radial-gradient(920px 480px at 12% 0%, #E8F4F9 0%, transparent 60%),
    radial-gradient(760px 440px at 92% 12%, #EEF3FC 0%, transparent 58%);
}
.sector-business .hero-grad {
  background:
    radial-gradient(920px 480px at 12% 0%, #E6F5F2 0%, transparent 60%),
    radial-gradient(760px 440px at 92% 12%, #EEF3FC 0%, transparent 58%);
}

/* small sector tag used on product pages */
.sector-tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .78rem; font-weight: 650; letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--sector, var(--brand));
  background: var(--sector-wash, var(--brand-wash));
  padding: 6px 13px; border-radius: 999px;
  margin-bottom: 16px;
}
.sector-tag:hover { text-decoration: none; filter: brightness(.94); }

/* --------------------------------------------------------- feature list -- */
.feat-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; }
.feat-list li {
  position: relative; padding-left: 31px;
  color: var(--ink-2); font-size: 1rem;
}
.feat-list li::before {
  content: ""; position: absolute; left: 0; top: .34em;
  width: 19px; height: 19px; border-radius: 50%;
  background: var(--accent-wash) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300A88E' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.on-dark .feat-list li { color: #C8D5EA; }
.on-dark .feat-list li::before { background-color: rgba(0, 168, 142, .2); }

/* ------------------------------------------------------------ split row -- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.split-text { min-width: 0; }
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 38px; }
  .split.reverse .split-media { order: -1; }
}

/* ------------------------------------------------------------ dark band -- */
.on-dark {
  background:
    radial-gradient(1100px 520px at 78% -10%, rgba(45, 125, 246, .30), transparent 62%),
    linear-gradient(165deg, var(--brand-dark) 0%, var(--brand-darker) 100%);
  color: #B7C6DE;
}
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4, .on-dark strong { color: #fff; }
.on-dark a { color: #9CC0FA; }

.band-wash { background: var(--bg-2); }
.band-wash-2 { background: var(--brand-wash); }

/* ----------------------------------------------------------------- hero -- */
.hero {
  position: relative;
  padding-block: clamp(56px, 7vw, 100px) clamp(56px, 7vw, 96px);
  overflow: hidden;
}
.hero-grad {
  background:
    radial-gradient(920px 480px at 12% 0%, var(--brand-wash) 0%, transparent 60%),
    radial-gradient(760px 440px at 92% 12%, var(--accent-wash) 0%, transparent 58%);
}
.hero h1 { margin-bottom: .42em; }
.hero .lede { font-size: clamp(1.1rem, 1rem + .45vw, 1.32rem); }
.hero .btn-row { margin-top: 34px; }

.hero-split {
  display: grid; grid-template-columns: 1.04fr .96fr;
  gap: clamp(36px, 5vw, 70px); align-items: center;
}
@media (max-width: 900px) { .hero-split { grid-template-columns: 1fr; gap: 44px; } }

.hero-note {
  margin-top: 26px; font-size: .9rem; color: var(--ink-4);
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.hero-note svg { width: 16px; height: 16px; flex-shrink: 0; }
.on-dark .hero-note { color: #93A6C4; }

/* Safety net: an inline SVG with no width/height attribute would otherwise
   expand to fill its container. Anything not sized by a rule above gets a
   sensible inline-icon size. */
p svg:not([width]), li svg:not([width]), span svg:not([width]) {
  width: 1em; height: 1em; flex-shrink: 0;
}
.card-icon svg:not([width]) { width: 23px; height: 23px; }
.pc-mark svg:not([width])   { width: 26px; height: 26px; }
.trust-item svg:not([width]){ width: 17px; height: 17px; }
.store-badge svg:not([width]) { width: 24px; height: 24px; }

/* trust strip */
.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  padding-block: 26px;
}
.trust-items {
  display: flex; flex-wrap: wrap; gap: 14px 40px;
  align-items: center; justify-content: center;
}
.trust-item {
  display: flex; align-items: center; gap: 9px;
  font-size: .9rem; font-weight: 550; color: var(--ink-3);
}
.trust-item svg { width: 17px; height: 17px; color: var(--accent); flex-shrink: 0; }

/* ----------------------------------------------------------------- stat -- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 820px) { .stats { grid-template-columns: repeat(2, 1fr); } }

.stat .stat-n {
  font-size: clamp(2rem, 1.5rem + 1.8vw, 2.9rem);
  font-weight: 750; letter-spacing: -.035em; line-height: 1;
  color: var(--brand); margin-bottom: 9px;
}
.on-dark .stat .stat-n { color: #fff; }
.stat .stat-l { font-size: .93rem; color: var(--ink-3); }
.on-dark .stat .stat-l { color: #A9BBD6; }

/* ----------------------------------------------------------- phone mock -- */
.phone {
  position: relative;
  width: 100%; max-width: 310px; margin-inline: auto;
  aspect-ratio: 310 / 634;
  background: #10141F;
  border-radius: 40px;
  padding: 11px;
  box-shadow:
    0 0 0 2px #2A3142,
    var(--shadow-lg);
}
.phone::after {
  content: ""; position: absolute; top: 20px; left: 50%;
  transform: translateX(-50%);
  width: 84px; height: 22px; border-radius: 999px; background: #10141F;
  z-index: 3;
}
.phone-screen {
  width: 100%; height: 100%;
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  display: flex; flex-direction: column;
  font-size: 11px; line-height: 1.4;
  color: var(--ink);
}
.phone-tilt { transform: perspective(1600px) rotateY(-13deg) rotateX(3deg) rotate(1deg); }
@media (max-width: 900px) { .phone-tilt { transform: none; } }

/* phone chrome */
.ph-top {
  background: var(--brand); color: #fff;
  padding: 34px 15px 13px;
  flex-shrink: 0;
}
.ph-top .ph-eyebrow { font-size: 9px; opacity: .75; letter-spacing: .07em; text-transform: uppercase; }
.ph-top .ph-title { font-size: 14px; font-weight: 650; letter-spacing: -.01em; }

.ph-tabs {
  display: flex; gap: 2px; padding: 0 9px;
  background: var(--brand); flex-shrink: 0;
}
.ph-tabs span {
  flex: 1; text-align: center; font-size: 9px; font-weight: 600;
  color: rgba(255, 255, 255, .6); padding: 8px 0 9px;
  border-bottom: 2px solid transparent;
}
.ph-tabs span.on { color: #fff; border-bottom-color: #fff; }

.ph-body {
  flex: 1; overflow: hidden; padding: 12px;
  background: var(--bg-2);
  display: flex; flex-direction: column; gap: 9px;
}

.ph-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: 10px; padding: 10px 11px;
}
.ph-card .ph-h {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 10px; font-weight: 650; color: var(--ink); margin-bottom: 7px;
}
.ph-card .ph-h em {
  font-style: normal; font-size: 8px; font-weight: 600;
  color: var(--brand); background: var(--brand-wash);
  padding: 2px 6px; border-radius: 999px;
}
.ph-row {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 10px; color: var(--ink-3); padding: 3px 0;
}
.ph-row b { color: var(--ink); font-weight: 600; }
.ph-row .up { color: #D7263D; font-weight: 650; }
.ph-row .ok { color: var(--accent); font-weight: 650; }

.ph-pt {
  display: flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--line);
  border-radius: 10px; padding: 9px 10px;
}
.ph-av {
  width: 26px; height: 26px; flex-shrink: 0; border-radius: 50%;
  background: var(--brand-wash); color: var(--brand);
  display: grid; place-items: center; font-size: 9px; font-weight: 700;
}
.ph-pt .ph-nm { font-size: 10px; font-weight: 650; color: var(--ink); }
.ph-pt .ph-sub { font-size: 9px; color: var(--ink-4); }
.ph-flag {
  margin-left: auto; font-size: 8px; font-weight: 650;
  padding: 2px 6px; border-radius: 999px;
  background: #FDECEF; color: #D7263D;
}
.ph-flag.g { background: var(--accent-wash); color: var(--accent); }

.ph-bubble {
  max-width: 78%; padding: 7px 10px; border-radius: 12px;
  font-size: 10px; line-height: 1.45;
}
.ph-bubble.them { background: #fff; border: 1px solid var(--line); border-bottom-left-radius: 4px; }
.ph-bubble.me {
  background: var(--brand); color: #fff; align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.ph-spark { display: block; width: 100%; height: 34px; }

/* ------------------------------------------------------------- tablet ---- */
.tablet {
  width: 100%; max-width: 560px; margin-inline: auto;
  background: #10141F; border-radius: 20px; padding: 13px;
  box-shadow: 0 0 0 2px #2A3142, var(--shadow-lg);
}
.tablet-screen {
  background: #fff; border-radius: 10px; overflow: hidden;
  aspect-ratio: 4 / 3; display: flex; flex-direction: column;
}

/* ---------------------------------------------------------------- forms -- */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3.5vw, 40px);
  box-shadow: var(--shadow);
}

.field { margin-bottom: 18px; }
.field label {
  display: block; font-size: .88rem; font-weight: 600;
  color: var(--ink); margin-bottom: 7px;
}
.field .req { color: #D7263D; }
.field .hint { font-size: .82rem; color: var(--ink-4); font-weight: 450; }

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: 12px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color .16s var(--ease), box-shadow .16s var(--ease);
}
.field textarea { min-height: 132px; resize: vertical; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B7689' stroke-width='2.2' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  background-size: 17px;
  padding-right: 40px;
}
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--ink-4); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-wash-2);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-4); }

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; gap: 0; } }

.field-check {
  display: flex; align-items: flex-start; gap: 11px;
  font-size: .9rem; color: var(--ink-3); line-height: 1.55;
}
.field-check input {
  width: 18px; height: 18px; margin: 2px 0 0; flex-shrink: 0;
  accent-color: var(--brand); cursor: pointer;
}

/* honeypot — hidden from humans, catches naive bots */
.hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px; height: 1px; overflow: hidden;
}

.form-status {
  margin-top: 18px; padding: 14px 16px;
  border-radius: var(--radius-sm); font-size: .93rem;
  display: none;
}
.form-status.is-ok  { display: block; background: var(--accent-wash); color: #04725F; border: 1px solid #A9E3D8; }
.form-status.is-err { display: block; background: #FDECEF; color: #A81027; border: 1px solid #F6C3CC; }

.field.has-error input,
.field.has-error select,
.field.has-error textarea { border-color: #D7263D; }
.field .err-msg { display: none; font-size: .82rem; color: #D7263D; margin-top: 6px; }
.field.has-error .err-msg { display: block; }

/* ---------------------------------------------------------------- misc --- */
.faq { border-top: 1px solid var(--line); }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.faq summary {
  cursor: pointer; list-style: none;
  font-weight: 620; font-size: 1.05rem; color: var(--ink);
  display: flex; align-items: flex-start; justify-content: space-between; gap: 20px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex-shrink: 0; width: 20px; height: 20px; margin-top: 3px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B7689' stroke-width='2.4' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform .22s var(--ease);
}
.faq details[open] summary::after { transform: rotate(180deg); }
.faq details p { margin-top: 12px; color: var(--ink-3); max-width: 72ch; }

.quote {
  background: #fff; border: 1px solid var(--line);
  border-left: 3px solid var(--brand);
  border-radius: var(--radius);
  padding: 26px 28px;
}
.quote blockquote {
  margin: 0 0 16px; font-size: 1.06rem; line-height: 1.6;
  color: var(--ink); font-weight: 450;
}
.quote figcaption { font-size: .88rem; color: var(--ink-4); }
.quote figcaption b { display: block; color: var(--ink-2); font-weight: 650; }

.steps { counter-reset: step; display: grid; gap: 26px; }
.step { position: relative; padding-left: 60px; counter-increment: step; }
.step::before {
  content: counter(step);
  position: absolute; left: 0; top: -2px;
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--brand); color: #fff;
  font-weight: 700; font-size: 1rem;
}
.step h3 { margin-bottom: .28em; }
.step p { color: var(--ink-3); font-size: .97rem; }

.cta-band { text-align: center; }
.cta-band h2 { max-width: 18ch; margin-inline: auto; }
.cta-band .lede { margin-inline: auto; margin-bottom: 32px; }

.legal { max-width: 780px; }
.legal h2 { font-size: 1.5rem; margin-top: 2em; }
.legal h3 { font-size: 1.12rem; margin-top: 1.7em; }
.legal p, .legal li { color: var(--ink-2); font-size: 1rem; }
.legal ul { padding-left: 22px; }
.legal li { margin-bottom: .5em; }
.legal address { font-style: normal; line-height: 1.8; }

.note-box {
  background: var(--brand-wash);
  border: 1px solid var(--brand-wash-2);
  border-radius: var(--radius);
  padding: 18px 22px;
  font-size: .93rem;
  color: var(--ink-2);
}

/* ---------------------------------------------------------- screenshots --
   Real app screenshots. The app UI is dark, so screenshots get a dark-tinted
   frame to sit comfortably on a light page.                                */
.shot {
  display: block; width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(9, 26, 60, .14);
  background: #10141F;
  box-shadow: var(--shadow);
}
.shot-sm { border-radius: 11px; }

/* Screenshots that already include a device frame (transparent PNG) */
.shot-framed {
  display: block;
  width: 100%; max-width: 320px;
  margin-inline: auto;
  filter: drop-shadow(0 18px 44px rgba(9, 26, 60, .30));
}
.shot-framed-lg { max-width: 360px; }

figure.shot-fig { margin: 0; }
figure.shot-fig figcaption {
  margin-top: 12px; font-size: .86rem; color: var(--ink-4); text-align: center;
}

.shot-pair {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start;
}
@media (max-width: 560px) { .shot-pair { grid-template-columns: 1fr; } }

/* ------------------------------------------------------------- pillars --
   Outcomes / Efficiency / Documentation / Collaboration                    */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 940px) { .pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .pillars { grid-template-columns: 1fr; } }

.pillar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.pillar h3 {
  font-size: 1.22rem; letter-spacing: -.026em; margin-bottom: 14px;
  color: var(--brand);
}
.pillar ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.pillar li {
  position: relative; padding-left: 17px;
  font-size: .95rem; color: var(--ink-3); line-height: 1.5;
}
.pillar li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 5px; height: 5px; border-radius: 50%; background: var(--accent);
}
.on-dark .pillar { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); }
.on-dark .pillar h3 { color: #9CC0FA; }
.on-dark .pillar li { color: #B7C6DE; }

/* ------------------------------------------------------ cost comparison -- */
.cost-compare { display: grid; grid-template-columns: 1fr auto 1fr; gap: 26px; align-items: center; }
@media (max-width: 820px) {
  .cost-compare { grid-template-columns: 1fr; gap: 18px; }
  .cost-vs { justify-self: center; }
}

.cost-col {
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  border: 1px solid var(--line);
  background: #fff;
}
.cost-col.is-old { background: var(--bg-2); }
.cost-col.is-new { border-color: var(--brand); box-shadow: 0 10px 34px rgba(9, 63, 149, .14); }

.cost-col .cost-label {
  font-size: .78rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--ink-4); margin-bottom: 10px;
}
.cost-col.is-new .cost-label { color: var(--brand); }
.cost-col .cost-figure {
  font-size: clamp(1.7rem, 1.3rem + 1.5vw, 2.4rem);
  font-weight: 750; letter-spacing: -.035em; line-height: 1.05;
  color: var(--ink); margin-bottom: 6px;
}
.cost-col.is-new .cost-figure { color: var(--brand); }
.cost-col .cost-sub { font-size: .9rem; color: var(--ink-4); margin-bottom: 18px; }
.cost-col ul {
  list-style: none; margin: 0; padding: 18px 0 0;
  border-top: 1px solid var(--line-2);
  display: grid; gap: 7px;
}
.cost-col li { font-size: .9rem; color: var(--ink-3); }
.cost-col.is-old li { color: var(--ink-4); }

.cost-vs {
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--ink); color: #fff;
  font-size: .78rem; font-weight: 700; letter-spacing: .04em;
}

/* -------------------------------------------------------------- partners -- */
.region-filter {
  display: flex; flex-wrap: wrap; gap: 9px;
  margin-bottom: 30px;
}
.region-chip {
  font-family: inherit; font-size: .9rem; font-weight: 550;
  padding: 9px 17px; border-radius: 999px; cursor: pointer;
  background: #fff; color: var(--ink-2);
  border: 1px solid var(--line);
  transition: background .16s var(--ease), border-color .16s var(--ease), color .16s var(--ease);
}
.region-chip:hover { border-color: var(--ink-4); }
.region-chip[aria-pressed="true"] {
  background: var(--brand); border-color: var(--brand); color: #fff;
}

.partner-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px;
  display: flex; flex-direction: column;
}
.partner-card .p-region {
  font-size: .76rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--brand); margin-bottom: 9px;
}
.partner-card h3 { font-size: 1.12rem; margin-bottom: .3em; }
.partner-card .p-countries { font-size: .88rem; color: var(--ink-4); margin-bottom: 16px; }
.partner-card .p-services {
  list-style: none; margin: 0 0 18px; padding: 0;
  display: flex; flex-wrap: wrap; gap: 7px;
}
.partner-card .p-services li {
  font-size: .8rem; font-weight: 550;
  background: var(--brand-wash); color: var(--brand);
  padding: 4px 11px; border-radius: 999px;
}
.partner-card .p-contact {
  margin-top: auto; padding-top: 16px;
  border-top: 1px solid var(--line-2);
  font-size: .9rem; line-height: 1.9;
}
.partner-card .p-quote {
  margin: 0 0 18px; padding: 14px 16px;
  background: var(--bg-2); border-radius: var(--radius-sm);
  font-size: .9rem; color: var(--ink-2); line-height: 1.55;
}
.partner-card .p-quote cite {
  display: block; margin-top: 7px; font-style: normal;
  font-size: .82rem; color: var(--ink-4);
}

.partner-empty {
  grid-column: 1 / -1;
  text-align: center; padding: 46px 26px;
  background: var(--bg-2); border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
}
.partner-empty h3 { font-size: 1.15rem; }
.partner-empty p { color: var(--ink-3); max-width: 48ch; margin-inline: auto; }

/* --------------------------------------------------------------- footer -- */
.site-footer {
  background: var(--brand-darker);
  color: #93A6C4;
  padding-block: clamp(48px, 6vw, 72px) 30px;
  font-size: .93rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px 30px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; gap: 30px; } }

.site-footer img { height: 27px; width: auto; margin-bottom: 18px; }
.site-footer h4 {
  color: #fff; font-size: .82rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 15px;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.site-footer a { color: #93A6C4; }
.site-footer a:hover { color: #fff; }
.site-footer address { font-style: normal; line-height: 1.75; }

.footer-bottom {
  margin-top: 44px; padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex; flex-wrap: wrap; gap: 10px 26px;
  align-items: center; justify-content: space-between;
  font-size: .86rem;
}
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 10px 22px; }

/* ------------------------------------------------------- scroll reveal --
   Scoped to .js (set by an inline snippet in <head>) so that with JavaScript
   disabled — or if site.js fails to load — every section stays visible
   instead of the page rendering blank.                                     */
.js .reveal { opacity: 0; transform: translateY(18px); }
.js .reveal.is-in {
  opacity: 1; transform: none;
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------- print -- */
@media print {
  .site-header, .site-footer, .btn, .nav-toggle { display: none !important; }
  body { font-size: 12pt; color: #000; }
  .on-dark { background: #fff !important; color: #000 !important; }
}
