/* NP SoftTech — Premium design system
   Inspired by specialist commerce-studio UX patterns.
   Brand colors only. */

:root {
  --color-primary: #0A4A73;
  --color-primary-deep: #071E33;
  --color-primary-light: #E8EEF3;
  --color-accent: #D95A12;
  --color-accent-hover: #B84A0E;
  --color-accent-light: #F3EBE4;
  --color-black: #0A0F14;
  --color-white: #FFFFFF;
  --color-text: #141A22;
  --color-muted: #5A6570;
  --color-border: #E1E6EC;
  --color-bg: #FAFBFC;
  --color-bg-soft: #F2F4F6;
  --color-surface: #FFFFFF;
  --font-sans: "Montserrat", system-ui, sans-serif;
  --font-serif: "Montserrat", system-ui, sans-serif;
  --container: 1350px;
  --radius: 14px;
  --radius-pill: 999px;
  --shadow: 0 1px 2px rgba(7, 30, 51, 0.04);
  --shadow-md: 0 12px 36px rgba(7, 30, 51, 0.08);
  --shadow-lg: 0 22px 50px rgba(7, 30, 51, 0.1);
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 5rem;
  --space-9: 7rem;
  --header-h: 84px;
  /* Clearance under sticky header + announce bar (kept in sync by JS). */
  --header-sticky-clearance: 7.5rem;
  --section-pad-y: clamp(2rem, 4.5vh, 3.25rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .marquee-track { animation: none !important; }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--color-accent); }

h1, h2, h3, h4 {
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: var(--color-black);
  font-weight: 750;
  margin: 0 0 var(--space-4);
}
h1 { font-size: clamp(2.4rem, 6.2vw, 4.35rem); font-weight: 800; }
h2 { font-size: clamp(1.85rem, 4vw, 3rem); }
h3 { font-size: 1.2rem; letter-spacing: -0.02em; }
p { margin: 0 0 var(--space-4); }
ul { margin: 0 0 var(--space-4); padding-left: 1.2rem; }

.italic-line,
.serif-em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: #0A0F14;
  letter-spacing: -0.025em;
  opacity: .78;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--color-accent); color: #fff; padding: .75rem 1rem; z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.container {
  width: min(100% - 1.5rem, var(--container));
  margin-inline: auto;
}
@media (min-width: 480px) {
  .container { width: min(100% - 2rem, var(--container)); }
}
@media (min-width: 1280px) {
  .container { width: min(100% - 2.5rem, var(--container)); }
}
.section { padding: var(--section-pad-y) 0; }
.section-sm { padding: var(--section-pad-y) 0; }
.section-lg { padding: var(--section-pad-y) 0; }
.section-soft { background: var(--color-bg-soft); }
.section-dark {
  background: linear-gradient(160deg, var(--color-primary-deep) 0%, var(--color-primary) 100%);
  color: var(--color-white);
}
.section-dark h2, .section-dark h3 { color: var(--color-white); }
.section-dark p, .section-dark .lead { color: rgba(255,255,255,.88); }
.section-dark .serif-em { color: rgba(255,255,255,.72); }

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-3);
}
.section-dark .eyebrow { color: var(--color-accent-light); }
.lead { font-size: 1.125rem; color: var(--color-muted); max-width: 38rem; line-height: 1.7; }
.text-muted { color: var(--color-muted); }
.section-intro { max-width: 40rem; margin-bottom: clamp(1rem, 2.2vh, 1.5rem); }

.grid-2 { display: grid; gap: var(--space-5); }
.grid-3 { display: grid; gap: var(--space-5); }
.grid-4 { display: grid; gap: var(--space-4); }
@media (min-width: 768px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Buttons — pill, uppercase, arrow */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: 0.95rem 1.45rem; border-radius: var(--radius-pill); border: 1.5px solid transparent;
  font-family: inherit; font-weight: 750; font-size: 0.78rem; line-height: 1.2;
  letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 2px; }
.btn .arrow { font-size: 1rem; line-height: 1; transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translate(2px, -2px); }

.btn-accent { background: var(--color-accent); color: var(--color-white); border-color: var(--color-accent); box-shadow: 0 8px 22px rgba(7, 30, 51, .12); }
.btn-accent:hover { background: var(--color-accent-hover); color: #fff; border-color: var(--color-accent-hover); }
.btn-primary { background: var(--color-primary-deep); color: #fff; border-color: var(--color-primary-deep); }
.btn-primary:hover { background: #052a47; color: #fff; }
.btn-outline {
  background: var(--color-white); color: var(--color-primary-deep); border-color: var(--color-border);
}
.btn-outline:hover { border-color: var(--color-primary); color: var(--color-primary); background: #fff; }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.45); }
.btn-outline-white:hover { background: #fff; color: var(--color-primary-deep); }
.btn-sm { padding: 0.7rem 1.1rem; font-size: 0.72rem; }
.btn-group { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: var(--space-5); }

/* Floating pill header — morph controlled in ui-upgrade.css */
.site-header {
  position: sticky; top: 0; z-index: 300;
  padding: 0;
  background: transparent;
  pointer-events: none;
}
.header-shell {
  pointer-events: auto;
  width: 100%;
  margin-inline: auto;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(215,231,242,.9);
  border-radius: 0;
  box-shadow: var(--shadow-md);
  height: 64px;
  display: flex; align-items: center; padding: 0 .55rem 0 1.1rem;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  width: 100%; height: 100%;
}
.brand img { width: 150px; height: auto; }
.nav-toggle {
  display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; padding: 10px; border-radius: 50%;
}
.nav-toggle span {
  display: block; height: 2px; background: var(--color-primary-deep); margin: 6px 0; transition: .2s; border-radius: 2px;
}
.primary-nav { display: flex; align-items: center; gap: 1rem; }
.nav-list { display: flex; align-items: center; gap: .1rem; list-style: none; margin: 0; padding: 0; }
.nav-link {
  display: inline-flex; align-items: center; padding: .5rem .7rem;
  color: var(--color-text); text-decoration: none; font-weight: 650; font-size: .9rem;
  background: none; border: 0; font-family: inherit; cursor: pointer; border-radius: var(--radius-pill);
}
.nav-link:hover, .nav-link.is-active { color: var(--color-primary); background: var(--color-bg-soft); }
.has-submenu { position: relative; }
.submenu {
  display: none;
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-40%);
  min-width: 520px;
  background: #fff;
  border: 1px solid var(--color-primary-light);
  box-shadow: var(--shadow-lg);
  padding: 1rem;
  border-radius: 18px;
  z-index: 20;
}
/* Hover/open controlled in nav-mega.css for bridge + premium panels */
.submenu a {
  display: block; padding: .7rem .8rem; color: var(--color-text); text-decoration: none;
  font-weight: 600; font-size: .9rem; border-radius: 10px;
}
.submenu a:hover { background: var(--color-bg-soft); color: var(--color-primary); }
.submenu a small { display: block; font-weight: 500; color: var(--color-muted); font-size: .75rem; margin-top: .15rem; }

@media (max-width: 980px) {
  .site-header { padding-top: 0; }
  .header-shell { height: auto; min-height: 58px; padding: .35rem .45rem .35rem .9rem; }
  .nav-toggle { display: inline-block; }
  .primary-nav {
    display: none; position: absolute; left: .75rem; right: .75rem; top: calc(100% + 8px);
    background: #fff; border: 1px solid var(--color-primary-light);
    padding: 1rem; border-radius: 18px; flex-direction: column; align-items: stretch; gap: .75rem;
    box-shadow: var(--shadow-lg);
  }
  .primary-nav.is-open { display: flex; }
  .nav-list { flex-direction: column; align-items: stretch; }
  .submenu {
    position: static; transform: none; min-width: 0; box-shadow: none; border: 0; padding: .25rem 0 .25rem .5rem;
    display: none; grid-template-columns: 1fr;
  }
  .has-submenu.is-open .submenu { display: grid; }
  .nav-cta .btn { width: 100%; }
}

/* Hero */
.hero {
  position: relative;
  padding: var(--section-pad-y) 0 0;
  overflow: hidden;
}
.hero-grid {
  display: grid; gap: var(--space-6); align-items: end;
  padding-bottom: var(--section-pad-y);
}
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.2fr .8fr; gap: 3rem; align-items: center; }
}
.hero h1 { max-width: 11.5ch; margin-bottom: 1.25rem; }
.hero h1 .serif-em { display: block; font-size: 0.88em; margin-top: .15rem; }
.hero .lead { font-size: 1.1rem; max-width: 34rem; }
.hero-aside {
  background: var(--color-surface);
  border: 1px solid var(--color-primary-light);
  border-radius: 22px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.hero-aside h2 {
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--color-primary); margin-bottom: 1rem;
}
.hero-aside ul { list-style: none; padding: 0; margin: 0; }
.hero-aside li {
  padding: .7rem 0; border-bottom: 1px solid var(--color-bg-soft);
  font-weight: 650; font-size: .95rem;
}
.hero-aside li:last-child { border-bottom: 0; }

/* Device marquee */
.marquee {
  position: relative;
  margin-top: .5rem;
  padding: 1.5rem 0 2.5rem;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex; gap: 1rem; width: max-content;
  animation: marquee 42s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.device-card {
  width: 190px; flex-shrink: 0;
  background: var(--color-surface);
  border: 1px solid var(--color-primary-light);
  border-radius: 28px;
  padding: 10px;
  box-shadow: var(--shadow);
  transition: transform .35s var(--ease-out);
}
.device-card:hover { transform: translateY(-6px); }
.device-screen {
  aspect-ratio: 9/16;
  border-radius: 20px;
  background:
    linear-gradient(165deg, var(--color-primary-light) 0%, #fff 55%, var(--color-bg-soft) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1rem;
  overflow: hidden;
  position: relative;
}
.device-screen::before {
  content: ""; position: absolute; inset: 12% 14% auto; height: 28%;
  background: rgba(10,86,142,.08); border-radius: 10px;
}
.device-screen::after {
  content: ""; position: absolute; inset: 44% 14% auto; height: 10%;
  background: rgba(10,86,142,.06); border-radius: 6px;
}
.device-meta { position: relative; z-index: 1; }
.device-meta strong { display: block; font-size: .85rem; color: var(--color-black); }
.device-meta span { font-size: .72rem; color: var(--color-muted); font-weight: 600; }

/* Proof */
.proof-bar {
  display: grid; gap: 1rem;
  padding: 1.75rem;
  background: var(--color-surface);
  border: 1px solid var(--color-primary-light);
  border-radius: 22px;
}
@media (min-width: 768px) {
  .proof-bar { grid-template-columns: repeat(5, 1fr); text-align: center; gap: .5rem; }
}
.proof-item strong { display: block; color: var(--color-primary); font-size: 1rem; letter-spacing: -0.02em; }
.proof-item span { font-size: .8rem; color: var(--color-muted); }

/* Panels / cards */
.panel {
  background: var(--color-surface);
  border: 1px solid var(--color-primary-light);
  border-radius: 20px;
  padding: 1.5rem;
  height: 100%;
  transition: border-color .25s var(--ease), transform .3s var(--ease-out), box-shadow .3s var(--ease);
}
.panel:hover { border-color: rgba(10,86,142,.35); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.panel-accent { border-top: 3px solid var(--color-accent); }
.panel-primary { border-top: 3px solid var(--color-primary); }
.panel .panel-label,
.meta {
  font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--color-accent); margin-bottom: .55rem;
}
.panel-link {
  text-decoration: none; color: inherit; display: block;
}
.panel-link:hover { color: inherit; text-decoration: none; }

.tag-row { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1rem; }
.tag {
  display: inline-flex; align-items: center;
  padding: .28rem .65rem; border-radius: var(--radius-pill);
  background: var(--color-bg-soft); color: var(--color-primary-deep);
  font-size: .72rem; font-weight: 700; letter-spacing: .02em;
}

/* Engagement dual cards */
.engagement-grid { display: grid; gap: 1.15rem; }
@media (min-width: 800px) {
  .engagement-grid { grid-template-columns: 1.1fr 1.1fr; }
}
.engagement-card {
  display: flex; flex-direction: column; gap: .85rem;
  padding: 1.75rem; border-radius: 24px; min-height: 100%;
  text-decoration: none; color: inherit;
  border: 1px solid var(--color-primary-light);
  background: var(--color-surface);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease);
}
.engagement-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); color: inherit; text-decoration: none; }
.engagement-card.dark {
  background: var(--color-primary-deep); color: #fff; border-color: transparent;
}
.engagement-card.dark h3, .engagement-card.dark p { color: #fff; }
.engagement-card.dark .panel-label { color: var(--color-accent-light); }
.engagement-card .best-for {
  margin-top: auto; padding-top: 1rem; border-top: 1px solid rgba(10,86,142,.12);
  font-size: .88rem; color: var(--color-muted);
}
.engagement-card.dark .best-for { border-top-color: rgba(255,255,255,.15); color: rgba(255,255,255,.75); }

/* Work / case cards */
.case-card {
  display: flex; flex-direction: column; gap: .85rem;
  text-decoration: none; color: inherit;
  border-radius: 22px; overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-primary-light);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease);
}
.case-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); text-decoration: none; color: inherit; }
.case-card .case-body { padding: 1.15rem 1.25rem 1.35rem; }
.case-visual {
  aspect-ratio: 16/11;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,103,19,.18), transparent 40%),
    linear-gradient(145deg, var(--color-primary-light), #fff 55%, var(--color-bg-soft));
  display: grid; place-items: end start;
  padding: 1.1rem; color: var(--color-primary-deep); font-weight: 800;
  font-size: 1.15rem; letter-spacing: -0.02em;
}

/* Process */
.process-steps {
  display: grid; gap: 1rem; counter-reset: step;
}
@media (min-width: 900px) {
  .process-steps { grid-template-columns: repeat(5, 1fr); }
}
.process-step {
  padding: 1.25rem; background: var(--color-surface); border-radius: 18px;
  border: 1px solid var(--color-primary-light); position: relative;
}
.process-step::before {
  counter-increment: step; content: "0" counter(step);
  display: block; font-weight: 800; font-size: .8rem; letter-spacing: .08em;
  color: var(--color-accent); margin-bottom: .6rem;
}
.process-step h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.process-step p { font-size: .9rem; margin: 0; color: var(--color-muted); }

/* Trust / problem grid */
.trust-grid { display: grid; gap: 1rem; }
@media (min-width: 800px) {
  .trust-grid { grid-template-columns: 1fr 1fr; }
}
.trust-item {
  padding: 1.4rem 1.5rem; border-radius: 18px;
  background: var(--color-surface); border: 1px solid var(--color-primary-light);
}
.trust-item h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.trust-item p { margin: 0; color: var(--color-muted); font-size: .95rem; }
.trust-item a { display: inline-block; margin-top: .85rem; font-weight: 700; font-size: .9rem; text-decoration: none; }

/* Forms */
.form-panel {
  background: var(--color-surface);
  border: 1px solid var(--color-primary-light);
  border-radius: 22px;
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: var(--shadow);
}
.form-grid { display: grid; gap: 1rem; }
@media (min-width: 700px) {
  .form-grid.two { grid-template-columns: 1fr 1fr; }
}
.form-field { display: flex; flex-direction: column; gap: .35rem; }
.form-field label { font-weight: 650; font-size: .9rem; }
.form-field .hint { font-size: .8rem; color: var(--color-muted); font-weight: 500; }
.form-field input,
.form-field select,
.form-field textarea {
  font: inherit; padding: .8rem .9rem; border: 1px solid var(--color-border);
  border-radius: 12px; background: #fff; color: var(--color-text);
  transition: border-color .15s, box-shadow .15s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(10,86,142,.14);
}
.form-field textarea { min-height: 110px; resize: vertical; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-actions { margin-top: 1rem; }
.alert {
  padding: .85rem 1rem; border-radius: 12px; margin-bottom: 1rem; font-weight: 600;
}
.alert-error { background: #ffe8e0; color: #8a2a0a; border: 1px solid #ffc4a8; }
.alert-success { background: var(--color-primary-light); color: #0A568E; border: 1px solid #a8c8de; }

/* FAQ */
.faq-list {
  display: grid;
  gap: .7rem;
  border: 0;
}
.faq-item {
  border: 1px solid #D7E7F2;
  border-radius: 16px;
  background: #FFFFFF;
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.faq-item:hover {
  border-color: #0A568E;
}
.faq-item[open] {
  border-color: #0A568E;
  box-shadow: 0 14px 34px rgba(10, 86, 142, .1);
}
.faq-item summary {
  cursor: pointer;
  padding: 1.05rem 1.1rem;
  font-weight: 700;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  color: #000000;
  line-height: 1.35;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  width: 1.75rem;
  height: 1.75rem;
  flex-shrink: 0;
  align-self: center;
  border-radius: 999px;
  background-color: #D7E7F2;
  background-image:
    linear-gradient(#0A568E, #0A568E),
    linear-gradient(#0A568E, #0A568E);
  background-size: 10px 2px, 2px 10px;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-color .25s ease, transform .25s ease;
}
.faq-item[open] summary::after {
  content: "";
  background-image: linear-gradient(#FFFFFF, #FFFFFF);
  background-size: 10px 2px;
  background-color: #0A568E;
  transform: none;
}
.faq-item summary:hover::after {
  transform: scale(1.06);
}
.faq-item .faq-body {
  padding: 0 1.1rem 1.15rem;
  color: #5A6570;
  line-height: 1.55;
  font-size: .95rem;
}

.faq-groups {
  display: grid;
  gap: 1.75rem;
}
.faq-group-title {
  margin: 0 0 .75rem;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: #0A568E;
  letter-spacing: -0.01em;
}

/* Breadcrumbs / page hero */
.breadcrumbs {
  padding: 1.25rem 0 .65rem; font-size: .85rem; color: var(--color-muted);
}
.breadcrumbs a { color: var(--color-primary); text-decoration: none; }
.breadcrumbs span { margin: 0 .35rem; }
.page-hero {
  padding: var(--section-pad-y) 0 calc(var(--section-pad-y) * .55);
}
.page-hero h1 .serif-em { display: inline; }

/* CTA band */
.cta-band {
  padding: var(--section-pad-y) 0;
  background: linear-gradient(135deg, var(--color-primary-deep) 0%, var(--color-primary) 55%, #0c6aad 100%);
  color: #fff;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; right: -10%; top: -40%; width: 50%; height: 140%;
  background: radial-gradient(circle, rgba(255,103,19,.22), transparent 60%);
  pointer-events: none;
}
.cta-band .container { position: relative; }
.cta-band h2 { color: #fff; max-width: 16ch; }
.cta-band p { color: rgba(255,255,255,.88); max-width: 36rem; }
.cta-band .btn-group { margin-top: 1.5rem; }

/* Footer */
.site-footer {
  background: #061f33;
  color: rgba(255,255,255,.85);
  padding: 4rem 0 1.5rem;
}
.footer-grid { display: grid; gap: 2rem; }
@media (min-width: 800px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}
.footer-brand p { font-size: .95rem; }
.footer-brand a { color: #fff; }
.footer-logo img { margin-bottom: 1rem; width: 160px; }
.footer-heading {
  color: #fff; font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: .85rem;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links a { color: rgba(255,255,255,.78); text-decoration: none; font-size: .92rem; display: inline-block; padding: .28rem 0; }
.footer-links a:hover { color: var(--color-accent-light); }
.footer-social { list-style: none; padding: 0; display: flex; gap: 1rem; margin-top: 1rem; }
.footer-social a { color: #fff; }
.footer-bottom {
  margin-top: 2.5rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,.12);
  font-size: .85rem; color: rgba(255,255,255,.65);
}

/* Blog journal style */
.journal-list { display: grid; gap: 0; }
.journal-item {
  display: grid; gap: .75rem; padding: 1.75rem 0;
  border-bottom: 1px solid var(--color-border);
  text-decoration: none; color: inherit;
  transition: padding-left .25s var(--ease);
}
.journal-item:hover { color: inherit; text-decoration: none; padding-left: .35rem; }
.journal-item h2 { font-size: clamp(1.25rem, 2.5vw, 1.65rem); margin: 0; }
.journal-item:hover h2 { color: var(--color-primary); }
@media (min-width: 700px) {
  .journal-item { grid-template-columns: 140px 1fr auto; align-items: baseline; gap: 1.5rem; }
}
.journal-date { font-size: .85rem; color: var(--color-muted); font-weight: 600; }
.journal-arrow { color: var(--color-accent); font-weight: 700; }

.article-body {
  max-width: none;
  font-size: 1.08rem;
  line-height: 1.8;
  color: #2A3540;
}
.article-body > p:first-of-type {
  font-size: 1.14rem;
  color: #3A4A58;
}
.article-body h2 {
  margin-top: 2.4rem;
  margin-bottom: .85rem;
  font-size: clamp(1.35rem, 2.2vw, 1.65rem);
  letter-spacing: -0.025em;
  color: #0A0F14;
  scroll-margin-top: calc(var(--header-sticky-clearance) + 12px);
}
.article-body h3 {
  margin-top: 1.75rem;
  scroll-margin-top: calc(var(--header-sticky-clearance) + 12px);
}
.article-body a { font-weight: 650; }
.article-body ul,
.article-body ol {
  padding-left: 1.2rem;
  margin: 1rem 0 1.25rem;
}
.article-body li + li { margin-top: .45rem; }
.article-body li::marker {
  color: #0A568E;
  font-weight: 700;
}

.article-page { padding-bottom: 0; }
.article-hero {
  padding: 1rem 0 1.5rem;
  background:
    radial-gradient(90% 80% at 100% 0%, rgba(255, 225, 208, .55) 0%, transparent 55%),
    linear-gradient(180deg, #F7FAFC 0%, #FFFFFF 100%);
}
.article-hero-top {
  max-width: 820px;
  margin: 0 auto 1.5rem;
}
.article-kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .35rem .55rem;
  margin-bottom: .85rem;
  font-size: .82rem;
  font-weight: 650;
  color: #5A6570;
}
.article-kicker-journal {
  color: #0A568E;
  text-decoration: none;
  font-weight: 750;
}
.article-kicker-journal:hover { color: #FF6713; }
.article-kicker-sep { opacity: .45; }
.article-hero-top h1 {
  margin: 0 0 .85rem;
  font-size: clamp(1.85rem, 4.5vw, 3rem);
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: #0A0F14;
}
.article-hero-top .lead {
  margin: 0 0 1.35rem;
  max-width: 42rem;
  font-size: 1.12rem;
  color: #5A6570;
}
.article-author-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem 1rem;
}
.article-author-avatar {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #0A568E, #073A61);
  color: #fff;
  font-weight: 750;
  font-size: .95rem;
  flex: 0 0 auto;
}
.article-author-meta {
  display: grid;
  gap: .1rem;
  min-width: 0;
}
.article-author-meta strong {
  color: #0A0F14;
  font-size: .95rem;
}
.article-author-meta span,
.article-published {
  font-size: .82rem;
  color: #8A97A5;
  font-weight: 600;
}
.article-published {
  margin-left: auto;
}
.article-hero-cover {
  max-width: 980px;
}
.article-cover-figure {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #D7E7F2;
  background: #FFFFFF;
  box-shadow: 0 22px 50px rgba(10, 86, 142, .1);
}
.article-cover-figure img {
  display: block;
  width: 100%;
  height: auto;
}
.article-shell {
  display: grid;
  gap: 1.75rem;
  padding-top: 2rem;
  padding-bottom: 1rem;
  align-items: start;
}
@media (min-width: 980px) {
  .article-shell {
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 2.5rem;
  }
}
.article-rail {
  display: grid;
  gap: 1rem;
}
@media (min-width: 980px) {
  .article-rail {
    position: sticky;
    top: var(--header-sticky-clearance);
    z-index: 0;
  }
}
.article-toc,
.article-takeaways {
  position: relative;
  z-index: 0;
}
.article-toc {
  padding: 1.05rem 1.1rem;
  border-radius: 18px;
  border: 1px solid #D7E7F2;
  background: #FFFFFF;
}
.article-toc-label,
.article-takeaways-label,
.article-author-card-label {
  margin: 0 0 .75rem;
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #0A568E;
}
.article-toc ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .35rem;
  counter-reset: none;
}
.article-toc a {
  display: grid;
  grid-template-columns: 1.6rem minmax(0, 1fr);
  gap: .55rem;
  align-items: start;
  padding: .45rem .35rem;
  border-radius: 10px;
  text-decoration: none;
  color: #3A4A58;
  font-size: .88rem;
  font-weight: 600;
  line-height: 1.35;
  transition: background .2s ease, color .2s ease;
}
.article-toc a.is-active {
  background: #F3F7FA;
  color: #0A568E;
}
.article-toc a.is-active .article-toc-num {
  color: #0A568E;
}
.article-toc-num {
  color: #FF6713;
  font-size: .75rem;
  font-weight: 750;
  padding-top: .1rem;
}
.article-takeaways {
  margin: 0;
  padding: 1.05rem 1.1rem;
  border-radius: 18px;
  border: 1px solid #D7E7F2;
  background: linear-gradient(165deg, #F7FAFC 0%, #FFFFFF 70%);
}
.article-takeaways ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .55rem;
}
.article-takeaways li {
  position: relative;
  padding-left: 1.15rem;
  color: #3A4A58;
  font-size: .9rem;
  line-height: 1.45;
}
.article-takeaways li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: .45rem;
  height: .45rem;
  border-radius: 50%;
  background: #FF6713;
}
.article-main {
  min-width: 0;
  max-width: 42rem;
}
.article-figure {
  margin: 1.85rem 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #D7E7F2;
  background: #F7FAFC;
}
.article-figure img {
  display: block;
  width: 100%;
  height: auto;
}
.article-figure figcaption {
  padding: .8rem 1rem .95rem;
  font-size: .86rem;
  color: #5A6570;
  border-top: 1px solid #E2ECF3;
  background: #FFFFFF;
}
.article-callout {
  margin: 1.6rem 0;
  padding: 1.05rem 1.15rem;
  border-radius: 16px;
  border-left: 3px solid #0A568E;
  background: #F3F7FA;
}
.article-callout-accent {
  border-left-color: #FF6713;
  background: #FFF6F0;
}
.article-callout strong {
  display: block;
  margin-bottom: .35rem;
  color: #0A0F14;
}
.article-callout p {
  margin: 0;
  color: #3A4A58;
  font-size: .95rem;
}
.article-table-wrap {
  margin: 1.75rem 0;
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid #D7E7F2;
  background: #FFFFFF;
  box-shadow: 0 10px 28px rgba(10, 86, 142, .05);
}
.article-table {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  font-size: .9rem;
}
.article-table th,
.article-table td {
  padding: .85rem 1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid #E2ECF3;
  line-height: 1.45;
}
.article-table th {
  background: #0A568E;
  color: #FFFFFF;
  font-weight: 700;
  white-space: nowrap;
}
.article-table tr:last-child td {
  border-bottom: 0;
}
.article-table tbody tr:nth-child(even) td {
  background: #F7FAFC;
}
.article-table td strong {
  color: #0A0F14;
}
.article-steps {
  margin: 1.25rem 0 1.5rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .75rem;
  counter-reset: article-step;
}
.article-steps li {
  position: relative;
  padding: .95rem 1rem .95rem 3.1rem;
  border-radius: 14px;
  border: 1px solid #D7E7F2;
  background: #FFFFFF;
  color: #3A4A58;
  line-height: 1.45;
}
.article-steps li::before {
  counter-increment: article-step;
  content: counter(article-step, decimal-leading-zero);
  position: absolute;
  left: .85rem;
  top: .95rem;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #FFE1D0;
  color: #FF6713;
  font-size: .72rem;
  font-weight: 800;
}
.article-check-grid {
  display: grid;
  gap: .65rem;
  margin: 1.15rem 0 1.4rem;
}
@media (min-width: 640px) {
  .article-check-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.article-check-grid div {
  padding: .85rem 1rem;
  border-radius: 14px;
  border: 1px solid #D7E7F2;
  background: linear-gradient(165deg, #F7FAFC 0%, #FFFFFF 70%);
  font-size: .92rem;
  color: #3A4A58;
  line-height: 1.4;
}
.article-check-grid strong {
  display: block;
  margin-bottom: .25rem;
  color: #0A568E;
  font-size: .78rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.article-faqs {
  margin-top: 2.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid #E2ECF3;
}
.article-faqs h2 {
  margin: 0 0 1rem;
  font-size: 1.45rem;
}
.article-footer {
  margin-top: 2.5rem;
  padding-top: 0;
  border-top: 0;
}
.article-footer h2 {
  font-size: 1.35rem;
  margin: 0 0 .35rem;
  letter-spacing: -0.02em;
  color: #0A0F14;
}
.article-services {
  padding: 1.35rem 1.35rem 1.45rem;
  border-radius: 22px;
  border: 1px solid #D7E7F2;
  background:
    linear-gradient(180deg, #F7FAFC 0%, #FFFFFF 48%),
    #FFFFFF;
}
.article-services-head {
  margin-bottom: 1.1rem;
  max-width: 36rem;
}
.article-services-label {
  margin: 0 0 .4rem;
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #0A568E;
}
.article-services-head p:last-child {
  margin: 0;
  color: #5A6570;
  font-size: .94rem;
  line-height: 1.5;
}
.article-services-grid {
  display: grid;
  gap: .7rem;
}
@media (min-width: 720px) {
  .article-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.article-service-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: .75rem;
  align-items: center;
  padding: .95rem 1rem;
  border-radius: 16px;
  border: 1px solid #D7E7F2;
  background: #FFFFFF;
  text-decoration: none !important;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: transform .28s var(--ease), box-shadow .28s ease, border-color .28s ease;
}
.article-service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #0A568E;
  opacity: 0;
  transition: opacity .25s ease;
}
.article-service-card:nth-child(even)::before {
  background: #FF6713;
}
.article-service-card:hover {
  transform: translateY(-2px);
  border-color: #0A568E;
  box-shadow: 0 14px 30px rgba(10, 86, 142, .1);
  color: inherit;
}
.article-service-card:hover::before {
  opacity: 1;
}
.article-service-index {
  display: inline-grid;
  place-items: center;
  min-width: 2rem;
  height: 2rem;
  padding: 0 .3rem;
  border-radius: 10px;
  background: #D7E7F2;
  color: #0A568E;
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .04em;
}
.article-service-card:nth-child(even) .article-service-index {
  background: #FFE1D0;
  color: #D95A12;
}
.article-service-text {
  display: grid;
  gap: .15rem;
  min-width: 0;
}
.article-service-text strong {
  font-size: .98rem;
  font-weight: 700;
  color: #0A0F14;
  letter-spacing: -0.01em;
}
.article-service-text span {
  font-size: .84rem;
  line-height: 1.4;
  color: #5A6570;
}
.article-service-go {
  color: #0A568E;
  font-size: 1rem;
  font-weight: 700;
  transition: transform .25s var(--ease), color .25s ease;
}
.article-service-card:hover .article-service-go {
  color: #FF6713;
  transform: translate(2px, -2px);
}
.article-author-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1rem;
  margin-top: 2.25rem;
  padding: 1.2rem 1.25rem;
  border-radius: 18px;
  border: 1px solid #D7E7F2;
  background: #F7FAFC;
}
.article-author-card strong {
  display: block;
  margin-bottom: .25rem;
  color: #0A0F14;
}
.article-author-card p {
  margin: 0;
  color: #5A6570;
  font-size: .92rem;
  line-height: 1.5;
}
.article-related {
  padding-top: 1rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background:
    radial-gradient(60% 80% at 0% 0%, rgba(215, 231, 242, .55) 0%, transparent 55%),
    #FFFFFF;
}
.journal-marquee-intro {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem 2rem;
  margin-bottom: 1.25rem;
}
.journal-marquee-copy {
  max-width: 36rem;
}
.journal-marquee-copy h2 {
  margin: .2rem 0 .45rem;
  font-size: clamp(1.45rem, 3vw, 2rem);
  letter-spacing: -0.03em;
}
.journal-marquee-copy .lead {
  margin: 0;
  color: #5A6570;
}
@media (max-width: 699px) {
  .article-published { margin-left: 0; width: 100%; }
  .journal-marquee-intro .home-journal-all { width: 100%; }
}

.journal-hero {
  padding: 1.75rem 0 0.5rem;
  background:
    radial-gradient(70% 90% at 100% 0%, rgba(255, 225, 208, .45) 0%, transparent 55%),
    radial-gradient(55% 70% at 0% 100%, rgba(215, 231, 242, .65) 0%, transparent 50%),
    linear-gradient(180deg, #F7FAFC 0%, #FFFFFF 100%);
}
.journal-hero-inner {
  max-width: 44rem;
  margin-inline: 0;
}
.journal-hero h1 {
  margin: .35rem 0 .85rem;
  font-size: clamp(2.35rem, 5.5vw, 3.6rem);
  letter-spacing: -0.04em;
  line-height: 1.06;
  color: #0A0F14;
}
.journal-hero .lead {
  max-width: 38rem;
  margin: 0;
  color: #5A6570;
  font-size: 1.05rem;
  line-height: 1.6;
}
.journal-toolbar-section {
  padding: 2rem 0 0;
  background: #FFFFFF;
}
.journal-toolbar {
  display: grid;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #E2ECF3;
}
.journal-search input {
  width: 100%;
  max-width: 26rem;
  height: 2.85rem;
  padding: 0 1.05rem;
  border: 1px solid #D7E7F2;
  border-radius: 999px;
  background: #FFFFFF;
  font: inherit;
  font-size: .92rem;
  color: #0A0F14;
  box-shadow: 0 6px 18px rgba(10, 86, 142, .04);
}
.journal-search input:focus {
  outline: none;
  border-color: #0A568E;
  box-shadow: 0 0 0 3px rgba(10, 86, 142, .14);
}
.journal-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.journal-filter {
  appearance: none;
  border: 0;
  cursor: pointer;
  padding: .58rem .95rem;
  border-radius: 999px;
  background: #EEF3F7;
  color: #3A4A58;
  font: inherit;
  font-size: .8rem;
  font-weight: 650;
  transition: background .2s ease, color .2s ease;
}
.journal-filter span {
  opacity: .7;
  font-weight: 600;
}
.journal-filter:hover {
  background: #D7E7F2;
  color: #0A568E;
}
.journal-filter.is-active {
  background: #0A0F14;
  color: #FFFFFF;
}
.journal-filter.is-active span { opacity: .75; }

.journal-listing.section {
  padding-top: 2.85rem;
  padding-bottom: 3rem;
}
.journal-grid {
  display: grid;
  gap: 1.75rem 1.35rem;
}
@media (min-width: 700px) {
  .journal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1.5rem;
  }
}
@media (min-width: 1100px) {
  .journal-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2.15rem 1.6rem;
  }
}
.journal-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  text-decoration: none !important;
  color: inherit;
  transition: transform .25s ease;
}
.journal-card:hover {
  transform: translateY(-2px);
  color: inherit;
  box-shadow: none;
  border-color: transparent;
}
.journal-card-media {
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  border: 1px solid #D7E7F2;
  background:
    linear-gradient(145deg, #D7E7F2 0%, #F7FAFC 55%, #FFE1D0 100%);
  overflow: hidden;
}
.journal-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s var(--ease-out, ease);
}
.journal-card:hover .journal-card-media img {
  transform: scale(1.03);
}
.journal-card-body {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  padding: .95rem .1rem 0;
}
.journal-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .35rem;
  margin: 0;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #8A97A5;
}
.journal-card h2 {
  margin: 0;
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  letter-spacing: -0.022em;
  line-height: 1.3;
  color: #0A0F14;
}
.journal-card:hover h2 {
  color: #0A568E;
}
.journal-card-body > p:not(.journal-card-meta) {
  margin: 0;
  color: #5A6570;
  font-size: .9rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.journal-card-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  margin-top: .15rem;
  font-size: .82rem;
  font-weight: 750;
  color: #0A0F14;
}
.journal-card:hover .journal-card-link { color: #FF6713; }
.journal-empty {
  margin-top: 1.5rem;
  color: #5A6570;
}
.journal-card.is-hidden {
  display: none !important;
}
@media (prefers-reduced-motion: reduce) {
  .journal-card { transition: none !important; }
  .journal-card:hover { transform: none; }
  .journal-card:hover .journal-card-media img { transform: none; }
}

/* Work / case studies listing */
.work-hero {
  padding: 1.75rem 0 .5rem;
  background:
    radial-gradient(70% 90% at 100% 0%, rgba(255, 225, 208, .42) 0%, transparent 55%),
    radial-gradient(55% 70% at 0% 100%, rgba(215, 231, 242, .62) 0%, transparent 50%),
    linear-gradient(180deg, #F7FAFC 0%, #FFFFFF 100%);
}
.work-hero-inner {
  max-width: 44rem;
}
.work-hero h1 {
  margin: .35rem 0 .85rem;
  font-size: clamp(2.35rem, 5.5vw, 3.5rem);
  letter-spacing: -0.04em;
  line-height: 1.06;
  color: #0A0F14;
}
.work-hero .lead {
  margin: 0;
  max-width: 40rem;
  color: #5A6570;
  font-size: 1.05rem;
  line-height: 1.6;
}
.work-toolbar-section {
  padding: 1.85rem 0 0;
  background: #FFFFFF;
}
.work-toolbar {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #E2ECF3;
}
.work-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.work-filter {
  appearance: none;
  border: 0;
  cursor: pointer;
  padding: .58rem .95rem;
  border-radius: 999px;
  background: #EEF3F7;
  color: #3A4A58;
  font: inherit;
  font-size: .8rem;
  font-weight: 650;
  transition: background .2s ease, color .2s ease;
}
.work-filter span { opacity: .7; font-weight: 600; }
.work-filter:hover { background: #D7E7F2; color: #0A568E; }
.work-filter.is-active { background: #0A0F14; color: #FFFFFF; }
.work-filter.is-active span { opacity: .75; }
.work-listing.section {
  padding-top: 2.5rem;
  padding-bottom: 2.75rem;
}
.work-grid {
  display: grid;
  gap: 1.75rem 1.35rem;
}
@media (min-width: 700px) {
  .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1.4rem;
  }
}
@media (min-width: 1020px) {
  .work-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem 1.5rem;
  }
}
.work-grid-related {
  margin-top: .25rem;
}
@media (min-width: 980px) {
  .work-grid-related { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.work-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  text-decoration: none !important;
  color: inherit;
  transition: transform .25s ease;
}
.work-card:hover { transform: translateY(-2px); color: inherit; }
.work-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  border: 1px solid #D7E7F2;
  overflow: hidden;
  background:
    linear-gradient(145deg, #D7E7F2 0%, #F7FAFC 55%, #FFE1D0 100%);
}
@media (max-width: 759px) {
  .work-card-media { aspect-ratio: 4 / 5; }
}
.work-card-media img,
.work-card-media picture,
.work-card-media picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.work-card-media picture {
  height: 100%;
}
.work-card-media img {
  transition: transform .45s var(--ease-out, ease);
}
.work-card:hover .work-card-media img { transform: scale(1.03); }
.work-card-fallback {
  display: grid;
  place-items: end start;
  height: 100%;
  padding: 1.1rem;
  font-weight: 800;
  color: #0A568E;
}
.work-card-industry {
  position: absolute;
  left: .75rem;
  bottom: .75rem;
  padding: .28rem .55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid #D7E7F2;
  color: #0A568E;
  font-size: .66rem;
  font-weight: 750;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.work-card-body {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  padding: .95rem .1rem 0;
}
.work-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .35rem;
  margin: 0;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #8A97A5;
}
.work-card-market {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}
.work-card-market img {
  border-radius: 2px;
  object-fit: cover;
}
.work-card h2,
.work-card h3 {
  margin: 0;
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  letter-spacing: -0.022em;
  line-height: 1.28;
  color: #0A0F14;
}
.work-card:hover h2,
.work-card:hover h3 { color: #0A568E; }
.work-card-body > p {
  margin: 0;
  color: #5A6570;
  font-size: .9rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.work-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
}
.work-card-tags span {
  padding: .22rem .5rem;
  border-radius: 999px;
  background: #F7FAFC;
  border: 1px solid #D7E7F2;
  color: #3A4A58;
  font-size: .7rem;
  font-weight: 650;
}
.work-card-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  margin-top: .1rem;
  font-size: .82rem;
  font-weight: 750;
  color: #0A0F14;
}
.work-card:hover .work-card-link { color: #FF6713; }
.work-empty { margin-top: 1.5rem; color: #5A6570; }
.work-card.is-hidden { display: none !important; }

/* Case study detail */
.case-page { padding-bottom: 1rem; }
.breadcrumbs + .case-page {
  margin-top: .25rem;
}
.case-hero {
  padding: 1.4rem 0 1.75rem;
  margin-top: .45rem;
  border-top: 1px solid #E6EEF5;
  background:
    radial-gradient(60% 80% at 100% 0%, rgba(255, 225, 208, .35) 0%, transparent 55%),
    linear-gradient(180deg, #F7FAFC 0%, #FFFFFF 70%);
}
.case-hero-top {
  display: grid;
  gap: 1.35rem 2rem;
  align-items: end;
}
@media (min-width: 900px) {
  .case-hero-top {
    grid-template-columns: minmax(0, 1.35fr) minmax(240px, .75fr);
    align-items: center;
  }
}
.case-hero-copy { min-width: 0; }
.case-kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .4rem .55rem;
  margin-bottom: .75rem;
  font-size: .78rem;
  font-weight: 700;
  color: #0A568E;
}
.case-kicker a { color: inherit; text-decoration: none; }
.case-kicker a:hover { color: #FF6713; }
.case-kicker-sep { color: #B7C6D3; }
.case-kicker-market {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}
.case-kicker-market img {
  border-radius: 2px;
  object-fit: cover;
}
.case-hero h1 {
  margin: 0 0 .75rem;
  font-size: clamp(1.7rem, 3.6vw, 2.45rem);
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: #0A0F14;
}
.case-hero .lead {
  margin: 0;
  color: #5A6570;
  font-size: 1.02rem;
  line-height: 1.55;
  max-width: 40rem;
}
.case-hero-aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}
@media (min-width: 900px) {
  .case-hero-aside {
    align-items: flex-end;
    text-align: right;
  }
  .case-meta-strip {
    justify-content: flex-end;
  }
  .case-hero-actions {
    justify-content: flex-end;
  }
}
.case-meta-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .3rem .15rem;
}
.case-meta-strip span {
  display: inline;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #5A6570;
  font-size: .72rem;
  font-weight: 650;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.case-meta-strip span + span::before {
  content: "·";
  margin: 0 .55rem 0 .4rem;
  color: #B7C6D3;
  font-weight: 700;
}
.case-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}
.case-hero-actions .btn {
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(7, 30, 51, .08);
}
.case-hero-actions .btn-outline {
  background: #FFFFFF;
  border-color: #0A568E;
  color: #0A568E;
  box-shadow: none;
}
.case-hero-actions .btn-outline:hover {
  background: #0A568E;
  color: #FFFFFF;
  border-color: #0A568E;
}
.case-hero-cover { margin-top: 1.75rem; }
.case-cover-figure {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #D7E7F2;
  background: #D7E7F2;
}
.case-cover-figure img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 520px;
  object-fit: cover;
}
.case-shell {
  display: grid;
  gap: 1.75rem;
  padding-top: 2rem;
  padding-bottom: 1rem;
  align-items: start;
}
@media (min-width: 980px) {
  .case-shell {
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 2.5rem;
  }
}
.case-rail {
  display: grid;
  gap: 1rem;
}
@media (min-width: 980px) {
  .case-rail {
    position: sticky;
    top: var(--header-sticky-clearance, 7.5rem);
    z-index: 0;
  }
}
.case-toc,
.case-takeaways,
.case-snapshot {
  padding: 1.05rem 1.1rem;
  border-radius: 18px;
  border: 1px solid #D7E7F2;
  background: #FFFFFF;
}
.case-toc-label,
.case-takeaways-label {
  margin: 0 0 .75rem;
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #0A568E;
}
.case-toc ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .25rem;
}
.case-toc a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .55rem;
  align-items: start;
  padding: .55rem .6rem;
  border-radius: 12px;
  text-decoration: none;
  color: #3A4A58;
  font-size: .86rem;
  font-weight: 600;
  line-height: 1.35;
}
.case-toc a:hover,
.case-toc a.is-active {
  background: #D7E7F2;
  color: #0A568E;
}
.case-toc-num {
  color: #FF6713;
  font-size: .72rem;
  font-weight: 750;
  letter-spacing: .04em;
}
.case-takeaways ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .65rem;
}
.case-takeaways li {
  position: relative;
  padding-left: .95rem;
  color: #0A568E;
  font-size: .88rem;
  line-height: 1.45;
  font-weight: 600;
}
.case-takeaways li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45rem;
  width: .42rem;
  height: .42rem;
  border-radius: 50%;
  background: #FF6713;
}
.case-snapshot ul {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .7rem;
}
.case-snapshot li {
  display: grid;
  gap: .15rem;
}
.case-snapshot strong {
  font-size: .68rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #8A97A5;
}
.case-snapshot span {
  color: #0A0F14;
  font-size: .9rem;
  font-weight: 650;
}
.case-snapshot-actions {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin-top: .15rem;
}
.case-snapshot-actions .btn {
  width: 100%;
  justify-content: center;
  text-decoration: none;
}
.case-facts {
  display: grid;
  gap: .7rem;
  margin-bottom: 1.75rem;
}
@media (min-width: 640px) {
  .case-facts { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.case-facts div {
  padding: 1rem 1.05rem;
  border-radius: 16px;
  border: 1px solid #D7E7F2;
  background: #F7FAFC;
}
.case-facts strong {
  display: block;
  margin-bottom: .2rem;
  color: #0A0F14;
  font-size: .98rem;
}
.case-facts span {
  color: #5A6570;
  font-size: .78rem;
  font-weight: 650;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.case-body {
  color: #2A3540;
  line-height: 1.7;
}
.case-body h2 {
  margin-top: 2.2rem;
  margin-bottom: .85rem;
  font-size: clamp(1.3rem, 2vw, 1.55rem);
  letter-spacing: -0.025em;
  color: #0A0F14;
  scroll-margin-top: calc(var(--header-sticky-clearance, 7.5rem) + 12px);
}
.case-body h2:first-child { margin-top: 0; }
.case-body p { margin: 0 0 1rem; }
.case-body ul {
  margin: 0 0 1.25rem;
  padding-left: 1.15rem;
}
.case-body li + li { margin-top: .4rem; }
.case-faqs {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #E2ECF3;
}
.case-faqs h2 {
  margin: 0 0 1rem;
  font-size: 1.4rem;
  scroll-margin-top: calc(var(--header-sticky-clearance, 7.5rem) + 12px);
}
.case-related {
  padding-top: 1.5rem;
  padding-bottom: 2rem;
  background: linear-gradient(180deg, #FFFFFF 0%, #F7FAFC 100%);
}
.case-related-intro {
  margin-bottom: 1.5rem;
  max-width: 36rem;
}
.case-related-intro h2 {
  margin: .35rem 0 0;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  letter-spacing: -0.03em;
}

/* Reveal */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
}

.prose { max-width: 46rem; }
.prose h2 { margin-top: 2rem; }
.prose h3 { margin-top: 1.5rem; }
.checklist { list-style: none; padding: 0; }
.checklist li {
  position: relative; padding-left: 1.5rem; margin-bottom: .7rem;
}
.checklist li::before {
  content: ""; position: absolute; left: 0; top: .55rem; width: .5rem; height: .5rem;
  background: var(--color-accent); border-radius: 2px;
}

.related-services {
  display: grid;
  gap: .15rem;
}
.related-services a {
  display: block;
  padding: .9rem 0;
  border-bottom: 1px solid #E2ECF3;
  text-decoration: none;
  font-weight: 650;
  color: #0A0F14;
  transition: color .2s ease, padding-left .2s ease;
}
.related-services a:hover {
  color: #0A568E;
  padding-left: .35rem;
}

.price-note {
  background: #D7E7F2;
  border-left: 3px solid #0A568E;
  border-radius: 0 14px 14px 0;
  padding: 1rem 1.15rem;
  margin: 1.25rem 0;
  font-weight: 600;
  color: #000000;
}

.split-paths { display: grid; gap: 1.25rem; }
@media (min-width: 768px) {
  .split-paths { grid-template-columns: 1fr 1fr; }
}
.path-d2c { border-top: 3px solid var(--color-accent); }
.path-agency { border-top: 3px solid var(--color-primary); }

.product-row {
  display: grid; gap: 1rem; padding: 1.5rem 0; border-bottom: 1px solid var(--color-primary-light);
}
@media (min-width: 700px) {
  .product-row { grid-template-columns: 1fr auto; align-items: center; }
}

.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: max(.65rem, env(safe-area-inset-bottom, 0px));
  left: .65rem;
  right: .65rem;
  z-index: 90;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(215,231,242,.95);
  border-radius: 22px;
  padding: .65rem .7rem;
  box-shadow: 0 12px 36px rgba(7, 58, 97, .14);
}
.mobile-cta-bar .btn { width: 100%; border-radius: 999px; }
@media (max-width: 768px) {
  .mobile-cta-bar { display: block; }
  body { padding-bottom: 96px; }
}

.logo-wall {
  display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--color-border); border-radius: 18px; overflow: hidden;
}
.logo-wall span {
  display: grid; place-items: center; min-height: 88px; padding: 1rem;
  font-weight: 750; color: var(--color-primary-deep); letter-spacing: -0.02em;
  border-right: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border);
  background: var(--color-surface); font-size: .95rem; text-align: center;
}
.logo-wall span:nth-child(2n) { border-right: 0; }
.logo-wall span:nth-last-child(-n+2) { border-bottom: 0; }
@media (min-width: 700px) {
  .logo-wall { grid-template-columns: repeat(4, 1fr); }
  .logo-wall span { border-bottom: 0; }
  .logo-wall span:not(:nth-child(4n)) { border-right: 1px solid var(--color-border); }
  .logo-wall span:nth-child(4n) { border-right: 0; }
}

/* Contact page */
.contact-hero {
  padding: 1rem 0 1.25rem;
  background:
    radial-gradient(55% 70% at 100% 0%, rgba(255, 225, 208, .4) 0%, transparent 55%),
    linear-gradient(180deg, #F7FAFC 0%, #FFFFFF 75%);
  border-top: 1px solid #E6EEF5;
}
.contact-hero-inner {
  display: grid;
  gap: 1rem;
  min-width: 0;
}
@media (min-width: 880px) {
  .contact-hero-inner {
    grid-template-columns: minmax(0, 1.4fr) minmax(220px, .7fr);
    align-items: end;
    gap: 2rem;
  }
}
.contact-hero-copy {
  min-width: 0;
}
.contact-hero-copy h1 {
  overflow-wrap: anywhere;
  word-break: break-word;
}
.contact-hero-copy .lead {
  margin: 0;
  max-width: 38rem;
}
.contact-hero-trust {
  margin: 0;
  padding: .95rem 1rem;
  list-style: none;
  border-radius: 16px;
  border: 1px solid #D7E7F2;
  background: #FFFFFF;
  display: grid;
  gap: .5rem;
  min-width: 0;
}
.contact-hero-trust li {
  position: relative;
  padding-left: 1.15rem;
  color: #3A4A58;
  font-size: .88rem;
  font-weight: 650;
  line-height: 1.35;
}
.contact-hero-trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45rem;
  width: .45rem;
  height: .45rem;
  border-radius: 50%;
  background: #FF6713;
}
.contact-section {
  padding-top: 1.15rem;
  padding-bottom: 2.5rem;
}
.contact-layout {
  display: grid;
  gap: 1.35rem;
  align-items: start;
  min-width: 0;
}
@media (min-width: 980px) {
  .contact-layout {
    grid-template-columns: minmax(260px, .88fr) minmax(0, 1.35fr);
    gap: 2rem;
  }
}
.contact-aside,
.contact-form-wrap {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  min-width: 0;
  position: relative;
  z-index: 1;
}
/* Sticky only on desktop so mobile scroll never overlays the form */
@media (min-width: 980px) {
  .contact-aside {
    position: sticky;
    top: calc(var(--header-sticky-clearance, 7.5rem) + .75rem);
    z-index: 2;
  }
}
.contact-aside-label {
  margin: 0;
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #0A568E;
}
.contact-channel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: .75rem;
  align-items: center;
  padding: .9rem .95rem;
  border-radius: 16px;
  border: 1px solid #D7E7F2;
  background: #FFFFFF;
  text-decoration: none !important;
  color: inherit;
  transition: border-color .2s ease, box-shadow .2s ease;
  overflow: hidden;
}
@media (hover: hover) and (pointer: fine) {
  .contact-channel:hover {
    border-color: #0A568E;
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(10, 86, 142, .08);
    color: inherit;
  }
  .contact-channel-wa:hover {
    border-color: #25D366;
    box-shadow: 0 10px 24px rgba(37, 211, 102, .16);
  }
}
.contact-channel-wa {
  border-color: rgba(37, 211, 102, .35);
  background: linear-gradient(135deg, #F3FCF6 0%, #FFFFFF 70%);
}
.contact-channel-icon {
  display: grid;
  place-items: center;
  width: 2.45rem;
  height: 2.45rem;
  border-radius: 14px;
  background: #F7FAFC;
  color: #0A568E;
  flex-shrink: 0;
}
.contact-channel-wa .contact-channel-icon {
  background: #25D366;
  color: #FFFFFF;
}
.contact-channel-icon-mail { color: #FF6713; }
.contact-channel-body {
  display: flex;
  flex-direction: column;
  gap: .1rem;
  min-width: 0;
}
.contact-channel-body strong {
  font-size: .9rem;
  color: #0A0F14;
}
.contact-channel-body span {
  font-size: .86rem;
  font-weight: 650;
  color: #0A568E;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.contact-channel-body em {
  font-style: normal;
  font-size: .72rem;
  color: #8A97A5;
  font-weight: 550;
}
.contact-channel-cta {
  color: #8A97A5;
  font-weight: 700;
  flex-shrink: 0;
}
.contact-aside-card {
  margin-top: .15rem;
  padding: 1rem 1.05rem 1.1rem;
  border-radius: 16px;
  border: 1px solid #D7E7F2;
  background: #F7FAFC;
  min-width: 0;
  overflow: hidden;
}
.contact-checklist {
  margin: .55rem 0 .85rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .45rem;
}
.contact-checklist li {
  position: relative;
  padding-left: 1.1rem;
  padding-right: .25rem;
  color: #3A4A58;
  font-size: .86rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.contact-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .5rem;
  width: .4rem;
  height: .4rem;
  border-radius: 50%;
  background: #0A568E;
}
.contact-aside-note {
  margin: 0;
  color: #5A6570;
  font-size: .8rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}
.contact-form-panel {
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(10, 86, 142, .06);
  min-width: 0;
  overflow: hidden;
}
.contact-form-head {
  margin-bottom: 1.1rem;
  padding-bottom: .9rem;
  border-bottom: 1px solid #E6EEF5;
}
.contact-form-head h2 {
  margin: 0 0 .4rem;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  overflow-wrap: anywhere;
}
.contact-form-head p {
  margin: 0;
  color: #5A6570;
  font-size: .9rem;
  line-height: 1.5;
}
.contact-form-section {
  margin: 0 0 1.05rem;
  padding: 0;
  border: 0;
  min-width: 0;
}
.contact-form-section legend {
  margin: 0 0 .7rem;
  padding: 0;
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #0A568E;
  float: none;
  width: 100%;
}
.contact-form-panel .form-grid {
  min-width: 0;
}
.contact-form-panel .form-field {
  min-width: 0;
}
.contact-form-panel .form-field input,
.contact-form-panel .form-field select,
.contact-form-panel .form-field textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.contact-form-note {
  margin: .25rem 0 0;
  color: #8A97A5;
  font-size: .8rem;
  line-height: 1.45;
}
.contact-form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem 1rem;
  margin-top: 1.05rem;
}
.contact-form-secure {
  color: #8A97A5;
  font-size: .78rem;
  font-weight: 600;
}
@media (max-width: 979px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .contact-aside,
  .contact-form-wrap {
    position: static;
    top: auto;
    z-index: auto;
  }
  .contact-section {
    padding-bottom: 5.5rem; /* room for floating WhatsApp */
  }
}
@media (max-width: 699px) {
  .contact-form-panel {
    padding: 1.05rem .95rem 1.15rem;
    border-radius: 16px;
  }
  .contact-channel {
    padding: .8rem .85rem;
    gap: .65rem;
  }
  .contact-channel-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 12px;
  }
  .contact-form-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Floating WhatsApp */
.wa-float {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right, 0px));
  bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  z-index: 120;
  width: 3.65rem;
  height: 3.65rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #25D366;
  color: #FFFFFF;
  text-decoration: none !important;
  box-shadow: 0 10px 28px rgba(37, 211, 102, .42);
  transform: translateY(0) scale(1);
  animation: waFloatIn .55s cubic-bezier(.2, .8, .2, 1) both, waFloatBob 3.2s ease-in-out .7s infinite;
}
.wa-float:hover,
.wa-float:focus-visible {
  background: #1ebe57;
  color: #FFFFFF;
  transform: translateY(-2px) scale(1.04);
  animation: none;
}
.wa-float-icon {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
}
.wa-float-pulse {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(37, 211, 102, .45);
  z-index: 1;
  animation: waPulse 2.4s ease-out infinite;
  pointer-events: none;
}
.wa-float-pulse-delay {
  animation-delay: 1.2s;
}
.wa-float-tip {
  position: absolute;
  right: calc(100% + .7rem);
  top: 50%;
  transform: translateY(-50%) translateX(.35rem);
  white-space: nowrap;
  padding: .45rem .7rem;
  border-radius: 999px;
  background: #0A0F14;
  color: #FFFFFF;
  font-size: .75rem;
  font-weight: 650;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .18);
}
.wa-float:hover .wa-float-tip,
.wa-float:focus-visible .wa-float-tip,
.wa-float-tip.is-peek {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
@keyframes waFloatIn {
  from { opacity: 0; transform: translateY(18px) scale(.86); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes waFloatBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: .55; }
  70% { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}
@media (max-width: 768px) {
  body {
    padding-bottom: max(5.25rem, calc(4.25rem + env(safe-area-inset-bottom, 0px)));
  }
  body:has(.mobile-cta-bar) {
    padding-bottom: max(9.5rem, calc(8.5rem + env(safe-area-inset-bottom, 0px)));
  }
  body:has(.mobile-cta-bar) .wa-float {
    bottom: calc(5.6rem + env(safe-area-inset-bottom, 0px));
  }
  .wa-float-tip { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-float,
  .wa-float-pulse,
  .wa-float-pulse-delay {
    animation: none !important;
  }
}
