:root {
  --ink: #23201c;
  --graphite: #2b2824;
  --graphite-2: #443f38;
  --paper: #f4f2ee;
  --surface: #ffffff;
  --surface-glass: rgba(255, 255, 255, .78);
  --line: #d9d4ca;
  --muted: #6d665d;
  --gold: #8a5a2b;
  --gold-2: #c9a46a;
  --steel: #dfe7e3;
  --blue-soft: #e8efed;
  --sage: #56736a;
  --clay: #b96f3b;
  --success: #0f6b4f;
  --error: #9f2f28;
  --shadow: 0 22px 70px rgba(35, 32, 28, .10);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(138, 90, 43, .44);
  outline-offset: 3px;
}

button,
input,
select,
textarea {
  font: inherit;
}

body.nav-open {
  overflow: hidden;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 10px 14px;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.narrow {
  max-width: 820px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 245, 247, .78);
  border-bottom: 1px solid rgba(210, 210, 215, .72);
  backdrop-filter: saturate(180%) blur(22px);
}

.topline {
  background: rgba(255, 255, 255, .64);
  color: var(--muted);
  font-size: 13px;
  border-bottom: 1px solid rgba(210, 210, 215, .58);
}

.topline__inner,
.nav-shell,
.legal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topline__inner {
  min-height: 34px;
}

.topline a {
  color: var(--gold);
  font-weight: 700;
}

.nav-shell {
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand__mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: #1d1d1f;
  color: #fff;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  font-size: 18px;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  margin-top: 3px;
}

.site-nav,
.language-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  border-radius: 999px;
  color: #424245;
  font-size: 14px;
  font-weight: 650;
  padding: 9px 10px;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: #e8e8ed;
  color: var(--ink);
}

.language-switcher {
  position: relative;
}

.language-switcher select {
  appearance: none;
  min-width: 152px;
  border: 1px solid rgba(210, 210, 215, .9);
  border-radius: 999px;
  background: rgba(255, 255, 255, .74);
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  padding: 9px 34px 9px 14px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .05);
}

.language-switcher::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 1.8px solid var(--muted);
  border-bottom: 1.8px solid var(--muted);
  pointer-events: none;
  transform: translateY(-65%) rotate(45deg);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: 660px;
  height: calc(100svh - 132px);
  max-height: 760px;
  overflow: hidden;
  background: var(--graphite);
}

.hero picture,
.hero picture img,
.feature-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero picture img {
  object-position: center;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .76), rgba(0, 0, 0, .38) 46%, rgba(0, 0, 0, .05) 76%),
    linear-gradient(0deg, rgba(0, 0, 0, .14), rgba(0, 0, 0, .04));
}

.hero__content,
.feature-hero__content {
  position: relative;
  z-index: 2;
  align-self: center;
  color: #fff;
  padding-block: 72px;
}

.hero__content {
  max-width: 780px;
  margin-left: max(20px, calc((100vw - 1180px) / 2));
}

.eyebrow,
.kicker,
.service-card__code {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1,
.feature-hero h1,
.article-header h1 {
  margin: 0;
  font-size: 64px;
  font-weight: 760;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .92);
  font-size: 28px;
  line-height: 1.2;
}

.hero__copy,
.feature-hero p,
.page-hero p,
.article-header p {
  max-width: 720px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .78);
  font-size: 18px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 750;
}

.button--primary {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 18px 42px rgba(138, 90, 43, .22);
}

.button--primary:hover {
  background: #9a6a35;
}

.button--ghost {
  border-color: rgba(255, 255, 255, .42);
  color: #fff;
}

.button--ghost:hover {
  background: rgba(255, 255, 255, .12);
}

.button--ghost-dark {
  border-color: rgba(29, 29, 31, .22);
  background: #fff;
  color: var(--ink);
}

.button--ghost-dark:hover {
  border-color: rgba(138, 90, 43, .36);
  color: var(--gold);
}

.metrics {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.metrics__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.metrics__grid div {
  min-height: 116px;
  border-left: 1px solid var(--line);
  padding: 26px 24px;
}

.metrics__grid div:last-child {
  border-right: 1px solid var(--line);
}

.metrics strong {
  display: block;
  font-size: 36px;
  line-height: 1;
  font-weight: 760;
}

.metrics span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.metrics small {
  display: block;
  margin-top: 10px;
  color: #8b8b91;
  font-size: 12px;
  font-weight: 700;
}

.section {
  padding: 92px 0;
}

.section--compact {
  padding-top: 0;
}

.section--soft {
  background: #fbfbfd;
}

.section-intro h2,
.section-heading h2,
.statement h2,
.split h2,
.cta h2,
.detail-panel h2,
.page-hero h1,
.feature-hero h1,
.article-header h1 {
  margin: 0;
  font-size: 44px;
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-intro p:last-child,
.statement p,
.large-text,
.page-hero p {
  color: var(--muted);
  font-size: 18px;
}

.service-grid,
.value-grid,
.article-grid,
.process,
.service-detail-grid {
  display: grid;
  gap: 18px;
}

.service-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.business-grid,
.portfolio-grid,
.brand-grid,
.partner-grid {
  display: grid;
  gap: 18px;
}

.business-grid {
  grid-template-columns: repeat(3, 1fr);
}

.portfolio-grid {
  grid-template-columns: repeat(2, 1fr);
}

.brand-grid {
  grid-template-columns: repeat(4, 1fr);
}

.partner-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card,
.value,
.article-card,
.detail-panel,
.contact-panel,
.contact-form,
.faq-list details,
.business-card,
.portfolio-card,
.brand-tile,
.partner-tile,
.executive-panel,
.approval-panel,
.legal-content {
  background: var(--surface);
  border: 1px solid rgba(210, 210, 215, .74);
  border-radius: 8px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, .045);
}

.service-card,
.value,
.article-card,
.detail-panel,
.business-card,
.portfolio-card,
.brand-tile,
.partner-tile,
.executive-panel,
.approval-panel,
.legal-content {
  padding: 26px;
}

.service-card h3,
.value h3,
.article-card h2,
.process h3,
.business-card h3,
.portfolio-card h2,
.brand-tile h3,
.partner-tile strong {
  margin: 0 0 12px;
  font-size: 21px;
  font-weight: 740;
  line-height: 1.25;
}

.service-card p,
.value p,
.article-card p,
.process p,
.detail-panel p,
.business-card p,
.portfolio-card p,
.brand-tile p,
.executive-panel p,
.approval-panel p,
.legal-content p {
  margin: 0;
  color: var(--muted);
}

.business-card,
.portfolio-card,
.brand-tile,
.partner-tile {
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.business-card:hover,
.portfolio-card:hover,
.brand-tile:hover,
.partner-tile:hover {
  border-color: rgba(138, 90, 43, .30);
  box-shadow: 0 24px 64px rgba(0, 0, 0, .075);
  transform: translateY(-3px);
}

.business-card span,
.brand-tile span,
.partner-tile span {
  display: inline-flex;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: #005bb5;
  font-size: 11px;
  font-weight: 850;
  padding: 6px 10px;
  text-transform: uppercase;
}

.media-split,
.partner-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .92fr);
  align-items: center;
  gap: 54px;
}

.media-split--reverse {
  grid-template-columns: minmax(360px, .92fr) minmax(0, 1fr);
}

.media-split h2,
.partner-layout h2,
.approval-panel h2 {
  margin: 0;
  font-size: 46px;
  font-weight: 780;
  line-height: 1.06;
}

.media-split p:not(.eyebrow),
.partner-layout p,
.approval-panel p {
  color: var(--muted);
  font-size: 18px;
}

.media-split img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.executive-panel {
  background: linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(245, 245, 247, .94));
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.executive-panel span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.executive-panel strong {
  display: block;
  max-width: 520px;
  margin: 12px 0 18px;
  font-size: 34px;
  font-weight: 780;
  line-height: 1.08;
}

.mini-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 22px 0 28px;
  padding: 0;
  list-style: none;
}

.mini-list li {
  border: 1px solid rgba(210, 210, 215, .72);
  border-radius: 8px;
  background: rgba(255, 255, 255, .74);
  color: #2c343b;
  font-weight: 760;
  padding: 11px 12px;
}

.approval-note {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
}

.partner-layout {
  grid-template-columns: .85fr 1.15fr;
}

.partner-tile {
  min-height: 134px;
}

.partner-tile strong {
  display: block;
}

.process--six {
  grid-template-columns: repeat(3, 1fr);
}

.approval-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.legal-content {
  max-width: 820px;
}

.legal-content h2 {
  margin: 0 0 16px;
  font-size: 34px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, .72);
  font-size: 13px;
  font-weight: 750;
}

.breadcrumbs a {
  color: #fff;
}

.feature-band {
  background: #fff;
  color: var(--ink);
}

.feature-band__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 42px;
}

.feature-band h2 {
  margin: 0;
  font-size: 44px;
  font-weight: 760;
  line-height: 1.08;
}

.feature-band p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
}

.feature-band img {
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.publixo-band {
  background:
    radial-gradient(circle at 74% 18%, rgba(138, 90, 43, .10), transparent 34%),
    linear-gradient(180deg, #fff, #f4f2ee);
  overflow: hidden;
}

.publixo-grid {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(520px, 1.28fr);
  align-items: center;
  gap: 48px;
}

.publixo-copy h2 {
  margin: 0;
  color: #23201c;
  font-size: clamp(40px, 4vw, 58px);
  font-weight: 780;
  line-height: 1.06;
}

.publixo-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.publixo-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.publixo-features li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 9px;
  align-items: center;
  min-height: 42px;
  border: 1px solid #dde3e8;
  border-radius: 999px;
  background: rgba(255, 255, 255, .76);
  color: #172028;
  font-size: 13px;
  font-weight: 760;
  padding: 0 14px;
}

.publixo-features li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #0a66ff;
  box-shadow: 0 0 0 4px rgba(10, 102, 255, .10);
}

.portal-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  margin-top: 26px;
}

.publixo-screenshot {
  position: relative;
  margin: 0;
  border: 1px solid rgba(210, 210, 215, .82);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(244, 242, 238, .92)),
    rgba(255, 255, 255, .86);
  box-shadow: 0 34px 110px rgba(0, 21, 43, .16);
  padding: 10px;
  backdrop-filter: blur(20px);
}

.publixo-screenshot img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: 12px;
  background: linear-gradient(135deg, #f4f2ee 0%, #fff 48%, #e8edf0 100%);
  object-fit: cover;
  object-position: left top;
}

.publixo-screenshot figcaption {
  margin: 10px 4px 0;
  color: #68717a;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--gold);
  font-weight: 750;
}

.text-link:hover {
  color: #5f3d20;
}

.notice {
  background: #fff8e6;
  border-block: 1px solid #f1dfb6;
}

.notice__inner {
  display: grid;
  grid-template-columns: minmax(240px, 380px) 1fr;
  gap: 34px;
  align-items: center;
  padding: 34px 0;
}

.notice h2 {
  margin: 0;
  font-size: 24px;
}

.notice p {
  margin: 0;
  color: #4d4537;
}

.section-heading {
  margin-bottom: 32px;
}

.section-heading--row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
}

.process {
  grid-template-columns: repeat(3, 1fr);
}

.process article {
  border-top: 2px solid var(--gold);
  padding-top: 24px;
}

.process span {
  color: var(--muted);
  font-weight: 800;
}

.page-hero,
.article-header {
  background:
    linear-gradient(120deg, rgba(29, 29, 31, .94), rgba(58, 58, 60, .82)),
    url("/assets/images/mexcor-hero.jpg") center / cover;
  color: #fff;
  padding: 112px 0 84px;
}

.page-hero .eyebrow,
.article-header .eyebrow {
  color: var(--gold-2);
}

.feature-hero {
  position: relative;
  min-height: 640px;
  display: grid;
  overflow: hidden;
  background: var(--graphite);
}

.feature-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(29, 29, 31, .78), rgba(29, 29, 31, .34) 52%, rgba(29, 29, 31, .05));
}

.feature-hero__content {
  align-self: center;
}

.statement {
  max-width: 900px;
}

.split,
.contact-layout,
.faq-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
}

.facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.facts div {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.facts span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.facts strong {
  display: block;
  margin-top: 8px;
  font-size: 20px;
}

.value-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-detail-grid {
  grid-template-columns: repeat(2, 1fr);
}

.article-grid {
  grid-template-columns: repeat(3, 1fr);
}

.article-list {
  display: grid;
  gap: 18px;
}

.article-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
}

.article-card--wide {
  min-height: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.article-card h2 a:hover {
  color: var(--gold);
}

.article-body {
  max-width: 820px;
  padding: 72px 0 18px;
}

.article-body p {
  color: #2c343b;
  font-size: 19px;
  margin: 0 0 24px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 850;
}

.faq-list p {
  color: var(--muted);
  margin: 14px 0 0;
}

.contact-panel,
.contact-form {
  padding: 30px;
}

.contact-panel h2 {
  margin: 0 0 12px;
}

.contact-panel p,
.contact-panel dd {
  color: var(--muted);
}

.contact-panel dl {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
}

.contact-panel dt {
  font-weight: 850;
}

.contact-panel dd {
  margin: 0 0 10px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: #2d353c;
  font-size: 14px;
  font-weight: 800;
}

.contact-form .full,
.contact-form .flash,
.contact-form button {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d7d1c5;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 12px 13px;
}

.contact-form small {
  color: var(--muted);
  font-weight: 700;
}

.contact-form textarea {
  resize: vertical;
}

.check {
  display: flex !important;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px !important;
  color: var(--muted) !important;
  font-weight: 700 !important;
}

.check input {
  width: auto;
  margin-top: 5px;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.flash {
  border-radius: 8px;
  padding: 12px 14px;
  font-weight: 800;
}

.flash--success {
  background: rgba(15, 107, 79, .10);
  color: var(--success);
}

.flash--error {
  background: rgba(159, 47, 40, .10);
  color: var(--error);
}

.cta {
  background: #1d1d1f;
  color: #fff;
  padding: 62px 0;
}

.cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta p:not(.eyebrow) {
  color: #d9dee2;
  max-width: 760px;
}

.site-footer {
  background: #f4f2ee;
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  border-top: 1px solid var(--line);
  padding: 58px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(5, minmax(0, .82fr));
  gap: 28px;
}

.brand--footer .brand__mark {
  background: #1d1d1f;
  color: #fff;
}

.site-footer h2 {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 750;
  text-transform: uppercase;
}

.site-footer p,
.legal-row {
  color: var(--muted);
}

.site-footer a {
  color: var(--gold);
  font-weight: 650;
}

.footer-links {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-cta {
  display: inline-flex;
  width: max-content;
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  color: #fff;
  padding: 9px 13px;
}

.cookie-consent {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 90;
  width: min(620px, calc(100% - 32px));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: end;
  border: 1px solid rgba(210, 210, 215, .82);
  border-radius: 8px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 28px 90px rgba(0, 0, 0, .18);
  padding: 18px;
  backdrop-filter: blur(22px);
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent h2 {
  margin: 0 0 6px;
  font-size: 18px;
}

.cookie-consent p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.cookie-consent__check {
  margin-top: 12px;
}

.cookie-consent__actions {
  display: grid;
  gap: 8px;
}

.legal-row {
  border-top: 1px solid var(--line);
  margin-top: 34px;
  padding-top: 20px;
  font-size: 13px;
}

@media (max-width: 1060px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav,
  .language-switcher {
    display: none;
  }

  .nav-shell.is-open .site-nav,
  .nav-shell.is-open .language-switcher {
    display: flex;
  }

  .nav-shell.is-open .site-nav {
    position: fixed;
    inset: 108px 14px 86px;
    z-index: 80;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    border: 1px solid rgba(210, 210, 215, .86);
    border-radius: 8px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 28px 96px rgba(0, 0, 0, .18);
    padding: 18px;
    overflow-y: auto;
    backdrop-filter: blur(24px);
  }

  .nav-shell.is-open .site-nav a {
    border-radius: 8px;
    color: var(--ink);
    font-size: 24px;
    padding: 16px;
  }

  .nav-shell.is-open .language-switcher {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: max(18px, env(safe-area-inset-bottom));
    z-index: 81;
  }

  .nav-shell.is-open .language-switcher select {
    width: 100%;
    min-height: 52px;
    border-radius: 8px;
    background: #fff;
  }

  .service-grid,
  .article-grid,
  .footer-grid,
  .business-grid,
  .brand-grid,
  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .portfolio-grid,
  .media-split,
  .media-split--reverse,
  .partner-layout,
  .approval-panel {
    grid-template-columns: 1fr;
  }

  .approval-panel {
    display: grid;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 28px), 1180px);
  }

  .topline__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding: 8px 0;
  }

  .nav-shell {
    min-height: 72px;
  }

  .hero {
    min-height: 600px;
    height: auto;
  }

  .hero__content {
    margin-left: auto;
    padding-block: 74px;
  }

  .hero h1,
  .page-hero h1,
  .feature-hero h1,
  .article-header h1 {
    font-size: 42px;
  }

  .hero__lead {
    font-size: 23px;
  }

  .hero__shade {
    background: linear-gradient(90deg, rgba(0, 0, 0, .82), rgba(0, 0, 0, .62));
  }

  .metrics__grid,
  .feature-band__grid,
  .publixo-grid,
  .split,
  .contact-layout,
  .faq-preview,
  .service-detail-grid,
  .value-grid,
  .business-grid,
  .portfolio-grid,
  .brand-grid,
  .partner-grid,
  .partner-layout,
  .media-split,
  .media-split--reverse,
  .process,
  .process--six,
  .article-card--wide,
  .cta__inner,
  .notice__inner {
    grid-template-columns: 1fr;
  }

  .metrics__grid div,
  .metrics__grid div:last-child {
    border-right: 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .section {
    padding: 66px 0;
  }

  .section-heading--row,
  .cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-intro h2,
  .section-heading h2,
  .statement h2,
  .split h2,
  .cta h2,
  .detail-panel h2,
  .feature-band h2,
  .media-split h2,
  .partner-layout h2,
  .approval-panel h2 {
    font-size: 34px;
  }

  .publixo-copy h2 {
    font-size: 36px;
  }

  .publixo-screenshot {
    max-width: 860px;
    margin-inline: auto;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .footer-grid,
  .service-grid,
  .article-grid,
  .facts {
    grid-template-columns: 1fr;
  }

  .mini-list,
  .cookie-consent {
    grid-template-columns: 1fr;
  }

  .cookie-consent__actions {
    grid-template-columns: repeat(2, 1fr);
  }

  .cookie-consent__actions .button:last-child {
    grid-column: 1 / -1;
  }

  .legal-row {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(calc(100% - 22px), 1180px);
  }

  .brand__mark {
    width: 38px;
    height: 38px;
  }

  .hero h1,
  .page-hero h1,
  .feature-hero h1,
  .article-header h1 {
    font-size: 36px;
  }

  .hero__lead {
    font-size: 21px;
  }

  .button {
    width: 100%;
  }

  .cookie-consent .button {
    min-height: 44px;
    padding-inline: 10px;
    width: 100%;
  }

  .hero__actions {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* Reference design pass based on supplied MEXCOR mockup */
body {
  background: #fff;
  color: #070b0f;
  font-size: 15px;
  line-height: 1.55;
}

.container {
  width: min(1310px, calc(100% - 104px));
}

.topline {
  display: none;
}

.site-header {
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid #eef0f2;
  box-shadow: none;
}

.nav-shell {
  min-height: 68px;
  gap: 22px;
}

.brand {
  flex: 0 0 auto;
}

.brand__mark,
.brand small {
  display: none;
}

.brand__word,
.brand strong {
  display: block;
  color: #05090d;
  font-size: 25px;
  font-weight: 900;
  letter-spacing: .035em;
  line-height: 1;
}

.site-nav {
  flex: 1 1 auto;
  justify-content: center;
  gap: 22px;
}

.site-nav a {
  border-radius: 0;
  color: #23201c;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 0;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: transparent;
  color: #000;
}

.language-switcher select {
  min-width: 58px;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: #23201c;
  font-size: 13px;
  padding: 8px 22px 8px 8px;
}

.language-switcher::after {
  right: 5px;
  width: 6px;
  height: 6px;
}

.header-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border-radius: 5px;
  background: #070d12;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 9px 18px;
  white-space: nowrap;
}

.button {
  min-height: 39px;
  border-radius: 8px;
  font-size: 13px;
  padding: 10px 20px;
}

.button--primary {
  background: #23201c;
  color: #fff;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .10);
}

.button--primary:hover {
  background: #12191f;
}

.button--outline {
  border-color: #c9ced3;
  background: rgba(255, 255, 255, .88);
  color: #23201c;
}

.button--outline:hover {
  border-color: #23201c;
}

.button--light {
  background: #fff;
  color: #23201c;
}

.reference-hero {
  position: relative;
  overflow: hidden;
  background: #f4f2ee;
  border-bottom: 1px solid #edf0f2;
}

.reference-hero__media,
.reference-hero__media img,
.reference-hero__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.reference-hero__media img {
  object-fit: cover;
  object-position: center right;
}

.reference-hero__overlay {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .96) 0%, rgba(255, 255, 255, .88) 28%, rgba(255, 255, 255, .38) 48%, rgba(255, 255, 255, .06) 68%),
    linear-gradient(180deg, rgba(255, 255, 255, .22), rgba(245, 247, 250, .12));
}

.reference-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(560px, 42vw, 660px);
  padding: 64px 0 34px;
}

.reference-hero__copy {
  position: relative;
  z-index: 2;
  padding-top: 0;
}

.reference-hero h1 {
  max-width: 610px;
  margin: 0;
  color: #070b0f;
  font-size: 55px;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0;
  overflow-wrap: break-word;
  hyphens: auto;
}

.reference-hero__copy > p {
  max-width: 520px;
  margin: 28px 0 0;
  color: #20272d;
  font-size: 15px;
  line-height: 1.72;
}

.reference-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 28px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
}

.reference-hero__inner > .slider-dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
}

.slider-dots span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #cfd4d8;
}

.slider-dots span.is-active {
  width: 22px;
  background: #23201c;
}

.trusted-row {
  margin-top: 86px;
}

.trusted-row > span {
  display: block;
  margin-bottom: 14px;
  color: #2b3137;
  font-size: 12px;
}

.logo-cloud {
  display: flex;
  align-items: center;
  min-width: 0;
}

.logo-cloud--compact {
  gap: 24px;
  flex-wrap: wrap;
}

.logo-word {
  display: inline-flex;
  align-items: center;
  color: #080d12;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.logo-cloud--compact .logo-word {
  font-size: 14px;
}

.logo-word--philips {
  color: #1276c8;
  font-size: 29px;
  letter-spacing: .02em;
}

.logo-word--energizer {
  font-size: 25px;
  font-style: italic;
}

.logo-word--wilkinsonsword {
  max-width: 150px;
  font-size: 16px;
  text-align: center;
  white-space: normal;
}

.logo-word--bies {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: .08em;
}

.logo-word--oasy {
  color: #159557;
  font-size: 28px;
  letter-spacing: .02em;
}

.logo-word--kaufland {
  color: #d71920;
  font-size: 24px;
  letter-spacing: .01em;
}

.logo-word--geco {
  color: #222;
  font-size: 23px;
  letter-spacing: .08em;
}

.logo-word--fastplus {
  color: #e3262f;
  font-size: 19px;
  letter-spacing: .04em;
}

.logo-word--nay {
  color: #0057a8;
  font-size: 25px;
  letter-spacing: .03em;
}

.logo-word--alzask {
  color: #00a2e8;
  font-size: 24px;
  letter-spacing: .01em;
}

.logo-word--amazon {
  position: relative;
  color: #232f3e;
  font-size: 24px;
  font-weight: 850;
  letter-spacing: -.01em;
}

.logo-word--amazon::after {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: -8px;
  height: 3px;
  border-radius: 999px;
  background: #f5a623;
}

.logo-word--mm {
  color: #1c2630;
  font-size: 25px;
  font-weight: 920;
  letter-spacing: .03em;
}

.logo-word--ggtas {
  color: #0d5d83;
  font-size: 22px;
  font-weight: 880;
  letter-spacing: .02em;
}

.logo-word--dalsb2bpartneri,
.logo-word--dalsib2bpartneri,
.logo-word--otherb2bpartners {
  max-width: 180px;
  color: #5b6570;
  font-size: 18px;
  font-weight: 760;
  line-height: 1.15;
  text-align: center;
  white-space: normal;
}

.reference-section {
  padding: 46px 0 42px;
  background: #fff;
}

.reference-heading {
  max-width: 700px;
  margin: 0 auto 34px;
  text-align: center;
}

.reference-heading h2 {
  margin: 0;
  color: #23201c;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.2;
}

.reference-heading p {
  max-width: 610px;
  margin: 12px auto 0;
  color: #50575d;
  font-size: 14px;
}

.reference-heading--wide {
  max-width: 860px;
}

.reference-pillars {
  padding: 58px 0 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .74), rgba(244, 242, 238, .96)),
    var(--paper);
}

.reference-pillars__grid,
.service-pillar-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr);
  gap: 18px;
}

.reference-pillar,
.service-pillar-card,
.reference-case-card {
  border: 1px solid rgba(35, 32, 28, .12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 50px rgba(35, 32, 28, .07);
}

.reference-pillar {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff, #fbfaf7);
  color: #23201c;
}

.reference-pillar::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: #8a5a2b;
}

.reference-pillar,
.service-pillar-card {
  min-height: 330px;
  padding: 30px;
}

.reference-pillar--trade {
  background: linear-gradient(180deg, #fff, #fbfaf7);
  color: #23201c;
}

.reference-pillar--technology {
  background: linear-gradient(180deg, #fff, #fbfaf7);
  color: #23201c;
}

.reference-pillar--technology::before {
  background: #56736a;
}

.reference-pillar span,
.service-pillar-card span,
.reference-case-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.reference-pillar span,
.reference-pillar--trade span {
  color: #765027;
}

.reference-pillar--technology span {
  color: #48665d;
}

.reference-pillar h3,
.service-pillar-card h3,
.reference-case-card h3 {
  margin: 0;
  color: inherit;
  font-size: 26px;
  font-weight: 650;
  line-height: 1.18;
}

.reference-pillar p,
.service-pillar-card p,
.reference-case-card p {
  margin: 16px 0 0;
  color: rgba(35, 32, 28, .72);
  font-size: 14px;
  line-height: 1.7;
}

.reference-pillar--trade p,
.reference-pillar--trade li,
.reference-pillar p,
.reference-pillar li {
  color: rgba(35, 32, 28, .78);
}

.reference-pillar ul,
.service-pillar-card ul {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.reference-pillar ul {
  margin-top: 24px;
}

.reference-pillar li,
.service-pillar-card li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: rgba(35, 32, 28, .76);
  font-size: 13px;
  line-height: 1.55;
}

.reference-pillar li {
  grid-template-columns: 22px 1fr;
  align-items: center;
  border: 1px solid rgba(35, 32, 28, .10);
  border-radius: 7px;
  background: rgba(244, 242, 238, .72);
  padding: 11px 12px;
  color: #2f2a25;
  font-size: 14px;
  font-weight: 560;
}

.reference-pillar li::before,
.service-pillar-card li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 6px;
  border-radius: 999px;
  background: var(--gold-2);
}

.reference-pillar li::before {
  width: 9px;
  height: 9px;
  margin-top: 0;
  background: #c9a46a;
}

.reference-pillar--technology li::before {
  background: #6f8f84;
}

.reference-pillar .text-link,
.service-pillar-card .text-link {
  display: inline-flex;
  margin-top: 24px;
}

.reference-pillar .text-link {
  color: #23201c;
  text-decoration: underline;
  text-decoration-color: rgba(138, 90, 43, .45);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.reference-pillar .text-link:hover {
  color: #5f3d20;
  text-decoration-color: currentColor;
}

.reference-pillars .container,
.reference-heading,
.reference-pillars__grid,
.reference-pillar,
.reference-pillar * {
  min-width: 0;
}

.reference-heading h2,
.reference-heading p,
.reference-pillar h3,
.reference-pillar p,
.reference-pillar li,
.reference-pillar .text-link {
  overflow-wrap: anywhere;
  word-break: normal;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.solution-card {
  min-height: 205px;
  border: 1px solid #edf0f2;
  border-radius: 6px;
  background: linear-gradient(180deg, #fff, #fbfcfd);
  box-shadow: 0 18px 38px rgba(15, 24, 33, .04);
  padding: 24px 18px;
  text-align: center;
}

.line-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 22px;
  color: #23201c;
}

.solution-card h3 {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 850;
}

.solution-card p {
  margin: 0;
  color: #5f666c;
  font-size: 12px;
  line-height: 1.58;
}

.reference-section--brands {
  padding-top: 18px;
}

.reference-section--cases {
  background: #f8f7f3;
}

.reference-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.reference-case-card {
  min-height: 245px;
  padding: 26px;
}

.reference-case-card strong {
  display: block;
  margin-top: 22px;
  color: var(--sage);
  font-size: 13px;
  line-height: 1.45;
}

.logo-cloud--brand {
  justify-content: center;
  gap: clamp(38px, 7vw, 96px);
  min-height: 82px;
  min-width: 0;
  contain: layout paint;
}

.brand-strip__button,
.news-more {
  display: flex;
  width: max-content;
  margin: 18px auto 0;
}

.reference-stats {
  background: linear-gradient(90deg, #23201c, #2d2822);
  color: #fff;
}

.reference-stats__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  min-height: 130px;
  align-items: center;
}

.reference-stats__grid div {
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, .25);
}

.reference-stats__grid div:first-child {
  border-left: 0;
}

.reference-stats strong {
  display: block;
  font-size: 39px;
  line-height: 1;
  font-weight: 900;
}

.reference-stats span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, .86);
  font-size: 14px;
  font-weight: 650;
}

.reference-section--partners {
  background: #f2f0ea;
}

.partner-carousel {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 38px;
  align-items: center;
  gap: 12px;
}

.partner-carousel button {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid #dfe3e7;
  border-radius: 999px;
  background: #fff;
  color: #23201c;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  transition: background .18s ease, border-color .18s ease, color .18s ease, opacity .18s ease;
}

.partner-carousel button:hover {
  border-color: rgba(138, 90, 43, .42);
  background: #fbfaf7;
  color: #765027;
}

.partner-carousel button:disabled {
  cursor: default;
  opacity: .32;
}

.logo-cloud--partner {
  display: flex;
  gap: 14px;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  padding: 2px 2px 14px;
  scroll-behavior: smooth;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
  cursor: grab;
  contain: layout paint;
  -webkit-overflow-scrolling: touch;
}

.logo-cloud--partner::-webkit-scrollbar {
  display: none;
}

.logo-cloud--partner:focus-visible {
  outline: 3px solid rgba(13, 102, 208, .32);
  outline-offset: 5px;
}

.logo-cloud--partner.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
  user-select: none;
}

.logo-cloud--partner .logo-word {
  flex: 0 0 clamp(220px, 22vw, 318px);
  justify-content: center;
  min-height: 90px;
  padding: 0 24px;
  border: 1px solid #eef1f3;
  border-radius: 10px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 16px 34px rgba(15, 24, 33, .045);
  font-size: clamp(18px, 1.45vw, 22px);
  text-align: center;
  scroll-snap-align: start;
}

.slider-dots--center {
  margin-top: 20px;
}

.slider-dots[hidden] {
  display: none;
}

.reference-about {
  padding: 0;
  background: #fff;
}

.reference-about__grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 56px;
  align-items: center;
}

.reference-about__copy {
  padding: 74px 0;
}

.reference-kicker {
  margin: 0 0 18px;
  color: #8b939a;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.reference-about h2 {
  max-width: 420px;
  margin: 0;
  color: #23201c;
  font-size: 38px;
  font-weight: 500;
  line-height: 1.16;
}

.reference-about p:not(.reference-kicker) {
  max-width: 520px;
  margin: 26px 0 0;
  color: #303840;
  font-size: 14px;
  line-height: 1.75;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 32px 0 28px;
  padding: 0;
  color: #222a31;
  font-size: 14px;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: center;
}

.check-list li::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border: 1px solid #23201c;
  border-radius: 50%;
  font-size: 12px;
}

.reference-about img {
  display: block;
  width: 100%;
  min-height: 420px;
  background: linear-gradient(135deg, #f4f2ee 0%, #fff 48%, #e8edf0 100%);
  object-fit: cover;
}

.reference-section--news {
  background: #f2f0ea;
  padding-top: 50px;
}

.reference-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.reference-news-card {
  overflow: hidden;
  border: 1px solid #edf0f2;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(15, 24, 33, .045);
}

.reference-news-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #f4f2ee 0%, #fff 48%, #e8edf0 100%);
  object-fit: cover;
}

.reference-news-card div {
  padding: 22px 24px 24px;
}

.reference-news-card span {
  color: #7d858c;
  font-size: 11px;
  font-weight: 800;
}

.reference-news-card h3 {
  margin: 12px 0 12px;
  color: #23201c;
  font-size: 18px;
  font-weight: 650;
  line-height: 1.35;
}

.reference-news-card p {
  margin: 0;
  color: #4f575e;
  font-size: 14px;
}

.reference-news-card time {
  display: block;
  margin-top: 30px;
  color: #626a71;
  font-size: 12px;
}

.reference-final-cta {
  background: #f2f0ea;
  padding: 18px 0 28px;
}

.reference-final-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(7, 16, 21, .98), rgba(10, 24, 32, .96)),
    #23201c;
  color: #fff;
  padding: 28px 48px;
}

.reference-final-cta h2 {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 850;
}

.reference-final-cta p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 15px;
}

.site-footer {
  background: #23201c;
  color: #fff;
  border-top: 0;
  padding: 48px 0 22px;
}

.brand--footer .brand__word {
  color: #fff;
}

.site-footer h2 {
  color: #fff;
  font-size: 14px;
  text-transform: none;
}

.site-footer p,
.legal-row {
  color: rgba(255, 255, 255, .72);
}

.site-footer a {
  color: rgba(255, 255, 255, .82);
}

.legal-row {
  border-top-color: rgba(255, 255, 255, .12);
}

@media (max-width: 1180px) {
  .container {
    width: min(calc(100% - 44px), 1180px);
  }

  .site-nav {
    gap: 14px;
  }

  .solution-grid,
  .logo-cloud--partner {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1060px) {
  .header-contact {
    display: none;
  }

  .nav-shell.is-open .site-nav {
    inset: 78px 14px 86px;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 28px), 1180px);
  }

  .reference-hero__grid,
  .reference-pillars__grid,
  .reference-about__grid,
  .reference-news-grid,
  .reference-case-grid,
  .service-pillar-grid,
  .reference-stats__grid {
    grid-template-columns: 1fr;
  }

  .reference-hero__inner {
    min-height: 690px;
    padding: 54px 0 64px;
  }

  .reference-hero__media img {
    object-position: 64% center;
  }

  .reference-hero__overlay {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .92) 43%, rgba(255, 255, 255, .30) 72%, rgba(255, 255, 255, .06) 100%),
      linear-gradient(90deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .48));
  }

  .reference-hero h1 {
    font-size: 42px;
  }

  .reference-hero__copy > p {
    font-size: 15px;
  }

  .trusted-row {
    margin-top: 42px;
  }

  .solution-grid,
  .logo-cloud--partner {
    grid-template-columns: repeat(2, 1fr);
  }

  .reference-pillar,
  .service-pillar-card,
  .reference-case-card {
    min-height: 0;
    padding: 24px;
  }

  .reference-pillar h3,
  .service-pillar-card h3 {
    font-size: 23px;
  }

  .logo-cloud--brand {
    flex-wrap: wrap;
    gap: 26px 44px;
  }

  .reference-stats__grid {
    min-height: 0;
    padding: 28px 0;
    gap: 22px;
  }

  .reference-stats__grid div {
    border-left: 0;
  }

  .partner-carousel {
    grid-template-columns: 1fr;
  }

  .partner-carousel button {
    display: none;
  }

  .reference-about img {
    min-height: 280px;
  }

  .reference-final-cta__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    padding: 26px;
  }
}

@media (max-width: 520px) {
  .reference-hero h1 {
    font-size: 34px;
  }

  .reference-actions,
  .reference-actions .button {
    width: 100%;
  }

  .solution-grid,
  .logo-cloud--partner {
    grid-template-columns: 1fr;
  }

  .solution-card {
    min-height: 0;
  }

  .logo-cloud--compact {
    gap: 14px 20px;
  }

  .reference-heading h2 {
    font-size: 26px;
    line-height: 1.16;
  }

  .reference-about h2 {
    font-size: 30px;
  }

  .reference-pillars {
    padding-top: 42px;
  }

  .reference-pillar {
    padding: 22px 18px;
  }

  .reference-pillar h3 {
    font-size: 19px;
    line-height: 1.2;
  }

  .reference-pillar p,
  .reference-pillar li {
    font-size: 13px;
  }

  .service-pillar-card h3,
  .reference-case-card h3 {
    font-size: 21px;
  }
}

/* Mobile performance and article layout pass */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

.mobile-tabbar {
  display: none;
}

.blog-hub-section {
  background: #f2f0ea;
}

.blog-hub {
  display: grid;
  gap: 26px;
}

.blog-hub__intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
}

.blog-hub__intro h2 {
  max-width: 760px;
  margin: 0;
  color: #23201c;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 620;
  line-height: 1.08;
}

.blog-hub__intro p:not(.eyebrow) {
  max-width: 720px;
  margin: 16px 0 0;
  color: #4f575e;
  font-size: 17px;
  line-height: 1.7;
}

.blog-topic-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.blog-topic-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border: 1px solid #dde2e6;
  border-radius: 999px;
  background: rgba(255, 255, 255, .82);
  color: #172028;
  font-size: 13px;
  font-weight: 760;
  padding: 0 14px;
}

.newsletter-section {
  background: #fff;
  padding-block: 10px 54px;
}

.newsletter-section--blog {
  background: transparent;
  padding: 0;
}

.newsletter-brief {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  gap: 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 28px;
  background:
    radial-gradient(circle at 82% 0%, rgba(138, 90, 43, .32), transparent 34%),
    linear-gradient(135deg, #23201c, #2f2b25 58%, #23201c);
  box-shadow: 0 28px 80px rgba(7, 16, 21, .18);
  color: #fff;
  padding: 34px;
}

.newsletter-brief::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, transparent, #000 24%, #000 76%, transparent);
}

.newsletter-brief > * {
  position: relative;
  z-index: 1;
}

.newsletter-brief .eyebrow {
  color: #d9bf8b;
}

.newsletter-brief h2 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 650;
  line-height: 1.08;
}

.newsletter-brief__copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, .76);
  font-size: 16px;
  line-height: 1.7;
}

.newsletter-brief ul {
  display: grid;
  gap: 9px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.newsletter-brief li {
  position: relative;
  color: rgba(255, 255, 255, .78);
  font-size: 14px;
  font-weight: 680;
  padding-left: 22px;
}

.newsletter-brief li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .65em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c9a46a;
}

.newsletter-form {
  display: grid;
  gap: 12px;
  align-self: start;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 22px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
  color: #23201c;
  padding: 18px;
}

.newsletter-form label {
  display: grid;
  gap: 7px;
}

.newsletter-form label > span:not(:only-child),
.newsletter-form > label > span {
  color: #3e4852;
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.newsletter-form input[type="email"],
.newsletter-form input[name="company"] {
  width: 100%;
  min-height: 48px;
  border: 1px solid #d7dde2;
  border-radius: 14px;
  background: #fff;
  color: #23201c;
  font: inherit;
  font-size: 15px;
  padding: 11px 13px;
}

.newsletter-form input:focus-visible {
  outline: 3px solid rgba(138, 90, 43, .32);
  outline-offset: 2px;
}

.newsletter-consent {
  color: #56616b !important;
  font-size: 12px;
  line-height: 1.45;
}

.newsletter-consent span {
  text-transform: none !important;
}

.newsletter-consent a {
  color: #0b67d1;
  font-weight: 820;
  text-decoration: none;
}

.newsletter-consent a:hover,
.newsletter-consent a:focus-visible {
  text-decoration: underline;
}

.newsletter-form .button {
  width: 100%;
  min-height: 50px;
  border-radius: 14px;
}

.newsletter-form small {
  color: #6b747d;
  font-size: 12px;
  line-height: 1.45;
}

.newsletter-form .flash {
  margin: 0;
}

.newsletter-brief--sidebar {
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 24px;
  border-radius: 18px;
  padding: 20px;
}

.newsletter-brief--sidebar h2 {
  font-size: 23px;
}

.newsletter-brief--sidebar .newsletter-brief__copy p:not(.eyebrow) {
  font-size: 14px;
  line-height: 1.55;
}

.newsletter-brief--sidebar ul {
  display: none;
}

.newsletter-brief--sidebar .newsletter-form {
  border-radius: 16px;
  padding: 14px;
}

@media (max-width: 960px) {
  .newsletter-brief {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 26px;
  }

  .newsletter-form {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .newsletter-section {
    padding-block: 4px 34px;
  }

  .newsletter-brief {
    gap: 16px;
    border-radius: 22px;
    padding: 18px;
  }

  .newsletter-brief h2 {
    font-size: 25px;
    line-height: 1.12;
  }

  .newsletter-brief__copy p:not(.eyebrow) {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.5;
  }

  .newsletter-brief ul {
    display: none;
  }

  .newsletter-form {
    border-radius: 18px;
    gap: 10px;
    padding: 13px;
  }

  .newsletter-form input[type="email"],
  .newsletter-form input[name="company"],
  .newsletter-form .button {
    min-height: 48px;
  }

  .newsletter-company-field {
    display: none !important;
  }

  .newsletter-form small {
    display: none;
  }

  .newsletter-consent {
    font-size: 11px;
  }
}

@media (max-width: 360px) {
  .newsletter-brief {
    gap: 12px;
    padding: 14px;
  }

  .newsletter-brief h2 {
    font-size: 22px;
  }

  .newsletter-brief__copy p:not(.eyebrow) {
    display: none;
  }

  .newsletter-form {
    gap: 8px;
    padding: 11px;
  }

  .newsletter-form label > span:not(:only-child),
  .newsletter-form > label > span {
    font-size: 11px;
  }

  .newsletter-form input[type="email"],
  .newsletter-form input[name="company"],
  .newsletter-form .button {
    min-height: 46px;
  }

  .newsletter-consent {
    font-size: 10.5px;
    line-height: 1.35;
  }
}

.reference-news-grid--hub {
  grid-template-columns: repeat(4, 1fr);
}

.readiness-section {
  background:
    radial-gradient(circle at 12% 0, rgba(138, 90, 43, .14), transparent 34%),
    linear-gradient(180deg, #fff 0%, #f4f2ee 100%);
}

.readiness-shell {
  border: 1px solid rgba(210, 216, 222, .84);
  border-radius: 30px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 30px 90px rgba(7, 16, 21, .08);
  padding: clamp(18px, 3vw, 34px);
  backdrop-filter: blur(24px);
}

.readiness-heading {
  margin-bottom: 26px;
}

.readiness-heading h2 {
  max-width: 760px;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.04;
}

.readiness-heading p:not(.eyebrow) {
  max-width: 700px;
}

.readiness-note {
  display: grid;
  gap: 4px;
  max-width: 320px;
  border: 1px solid rgba(138, 90, 43, .16);
  border-radius: 20px;
  background: #eef6ff;
  color: #1b4e86;
  padding: 16px;
}

.readiness-note strong {
  color: #23201c;
  font-size: 14px;
}

.readiness-note span {
  color: #3f658d;
  font-size: 13px;
  line-height: 1.45;
}

.readiness-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 370px);
  gap: 20px;
  align-items: start;
}

.readiness-checklist {
  display: grid;
  gap: 16px;
}

.readiness-group {
  display: grid;
  gap: 12px;
  min-width: 0;
  margin: 0;
  border: 1px solid rgba(210, 216, 222, .86);
  border-radius: 24px;
  background: rgba(255, 255, 255, .92);
  padding: 18px;
}

.readiness-group legend {
  display: grid;
  gap: 2px;
  width: 100%;
  margin-bottom: 10px;
  color: #23201c;
  padding: 0 4px;
}

.readiness-group legend strong {
  font-size: 20px;
  line-height: 1.15;
}

.readiness-group legend span {
  color: #6a737d;
  font-size: 13px;
  font-weight: 650;
}

.readiness-option {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 78px;
  border: 1px solid rgba(210, 216, 222, .9);
  border-radius: 18px;
  background: #fff;
  color: #14181d;
  cursor: pointer;
  padding: 14px;
  transition: border-color .18s ease, background .18s ease, box-shadow .18s ease, transform .18s ease;
}

.readiness-option:hover {
  border-color: rgba(138, 90, 43, .32);
  box-shadow: 0 12px 34px rgba(7, 16, 21, .06);
  transform: translateY(-1px);
}

.readiness-option:has(input:checked) {
  border-color: rgba(138, 90, 43, .42);
  background: #f4f9ff;
}

.readiness-option input {
  width: 21px;
  height: 21px;
  margin: 0;
  accent-color: var(--gold);
}

.readiness-option span {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.readiness-option strong {
  color: #23201c;
  font-size: 15px;
  line-height: 1.25;
}

.readiness-option small {
  color: #59646e;
  font-size: 13px;
  line-height: 1.45;
}

.readiness-option em {
  display: grid;
  place-items: center;
  min-width: 34px;
  height: 30px;
  border-radius: 999px;
  background: #f0f2f5;
  color: #45505b;
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
}

.readiness-result {
  position: sticky;
  top: 118px;
  display: grid;
  gap: 18px;
  border: 1px solid rgba(7, 16, 21, .08);
  border-radius: 26px;
  background:
    radial-gradient(circle at 80% 0, rgba(101, 169, 255, .24), transparent 36%),
    #23201c;
  color: #fff;
  box-shadow: 0 28px 80px rgba(7, 16, 21, .22);
  padding: 24px;
}

.readiness-result .eyebrow {
  color: rgba(255, 255, 255, .6);
}

.readiness-scoreline {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.readiness-score {
  color: #fff;
  font-size: clamp(54px, 8vw, 82px);
  font-weight: 850;
  line-height: .9;
}

.readiness-scoreline span {
  color: rgba(255, 255, 255, .72);
  font-size: 24px;
  font-weight: 800;
}

.readiness-progress {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, .13);
}

.readiness-progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #c9a46a, #fff);
  transition: width .25s ease;
}

.readiness-status h2 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 24px;
  line-height: 1.15;
}

.readiness-status p,
.readiness-next li {
  color: rgba(255, 255, 255, .72);
  margin: 0;
}

.readiness-next {
  border-top: 1px solid rgba(255, 255, 255, .14);
  padding-top: 16px;
}

.readiness-next h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
}

.readiness-next ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0 0 0 18px;
}

.readiness-actions {
  display: grid;
  gap: 10px;
}

.readiness-actions .button {
  width: 100%;
  justify-content: center;
}

.readiness-result .button--outline {
  border-color: rgba(255, 255, 255, .34);
  color: #fff;
}

.readiness-reset {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .66);
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
  padding: 8px;
}

.readiness-usecases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.readiness-usecases .section-heading {
  grid-column: 1 / -1;
  margin-bottom: 8px;
}

.readiness-usecases article {
  border: 1px solid rgba(210, 216, 222, .9);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(7, 16, 21, .05);
  padding: 22px;
}

.readiness-usecases strong {
  display: block;
  color: #23201c;
  font-size: 18px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.readiness-usecases p {
  color: #5d6872;
  margin: 0;
}

@media (max-width: 980px) {
  .readiness-layout,
  .readiness-usecases {
    grid-template-columns: 1fr;
  }

  .readiness-result {
    position: static;
    order: -1;
  }
}

@media (max-width: 620px) {
  .readiness-section {
    padding-top: 22px;
  }

  .readiness-shell {
    width: min(100%, calc(100vw - 20px));
    border-radius: 24px;
    padding: 12px;
  }

  .readiness-heading {
    gap: 14px;
    margin-bottom: 16px;
  }

  .readiness-heading h2 {
    font-size: 38px;
  }

  .readiness-heading p:not(.eyebrow) {
    font-size: 17px;
    line-height: 1.5;
  }

  .readiness-note,
  .readiness-group,
  .readiness-result,
  .readiness-usecases article {
    border-radius: 20px;
  }

  .readiness-note {
    max-width: none;
    padding: 14px;
  }

  .readiness-group {
    padding: 14px;
  }

  .readiness-group legend strong {
    font-size: 18px;
  }

  .readiness-option {
    grid-template-columns: 28px minmax(0, 1fr);
    min-height: 82px;
    padding: 13px;
  }

  .readiness-option em {
    grid-column: 2;
    justify-self: start;
    height: 24px;
    min-width: 30px;
    font-size: 11px;
  }

  .readiness-option strong {
    font-size: 14px;
  }

  .readiness-option small {
    font-size: 12px;
  }

  .readiness-result {
    gap: 14px;
    padding: 18px;
  }

  .readiness-score {
    font-size: 56px;
  }

  .readiness-status h2 {
    font-size: 21px;
  }
}

.reference-news-card--hub {
  min-height: 100%;
}

.reference-news-card--hub div {
  display: flex;
  min-height: 246px;
  flex-direction: column;
}

.reference-news-card--hub h3 {
  font-size: 17px;
}

.reference-news-card--hub time {
  margin-top: auto;
  padding-top: 22px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 820px) minmax(260px, 340px);
  gap: 52px;
  align-items: start;
  padding: 72px 0 28px;
}

.article-body--seo {
  padding: 0;
}

.article-sidebar {
  position: sticky;
  top: 104px;
  border: 1px solid #e4e8eb;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(15, 24, 33, .06);
  padding: 24px;
}

.article-sidebar h2 {
  margin: 0;
  color: #23201c;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.article-sidebar p:not(.eyebrow) {
  margin: 14px 0 20px;
  color: #4f575e;
  font-size: 14px;
  line-height: 1.65;
}

.article-sidebar .text-link {
  margin-top: 16px;
}

@media (max-width: 1180px) {
  .reference-news-grid--hub {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1060px) {
  .nav-shell {
    min-height: 66px;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
    border-radius: 999px;
  }

  .nav-shell.is-open .site-nav {
    inset: 78px 12px 158px;
    gap: 4px;
    border-radius: 18px;
    padding: 12px;
  }

  .nav-shell.is-open .site-nav a {
    min-height: 48px;
    border-radius: 12px;
    font-size: clamp(18px, 5.2vw, 24px);
    line-height: 1.18;
    padding: 12px 14px;
  }

  .nav-shell.is-open .language-switcher {
    bottom: max(84px, calc(76px + env(safe-area-inset-bottom)));
  }

  .nav-shell.is-open .header-contact {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: max(18px, env(safe-area-inset-bottom));
    z-index: 82;
    display: inline-flex;
    justify-content: center;
    min-height: 52px;
    border-radius: 14px;
    font-size: 14px;
  }
}

@media (max-width: 920px) {
  .reference-news-grid--hub {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 48px;
  }

  .article-sidebar {
    position: static;
  }
}

@media (max-width: 820px) {
  .topline {
    display: none;
  }

  .site-header {
    min-height: 66px;
  }

  .page-hero,
  .article-header {
    padding: 74px 0 50px;
  }

  .page-hero h1,
  .article-header h1 {
    font-size: clamp(38px, 10vw, 56px);
  }

  .reference-hero {
    min-height: 0;
  }

  .reference-hero__inner {
    min-height: 660px;
    align-items: start;
    padding: 46px 0 58px;
  }

  .reference-hero__copy {
    max-width: 560px;
    padding-top: 0;
  }

  .reference-hero h1 {
    font-size: clamp(36px, 9vw, 50px);
    line-height: 1.08;
  }

  .reference-hero__copy > p {
    max-width: 31rem;
    font-size: 15px;
  }

  .reference-hero__media img {
    object-position: 68% center;
  }

  .reference-hero__overlay {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .94) 38%, rgba(255, 255, 255, .50) 68%, rgba(255, 255, 255, .10) 100%),
      linear-gradient(90deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .72) 46%, rgba(255, 255, 255, .18) 100%);
  }

  .trusted-row {
    margin-top: 32px;
  }

  .logo-cloud--compact {
    flex-wrap: nowrap;
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
  }

  .logo-cloud--compact::-webkit-scrollbar,
  .logo-cloud--brand::-webkit-scrollbar,
  .logo-cloud--partner::-webkit-scrollbar,
  .blog-topic-strip::-webkit-scrollbar {
    display: none;
  }

  .logo-cloud--compact .logo-word {
    flex: 0 0 auto;
  }

  .reference-section {
    padding: 42px 0 38px;
  }

  .reference-heading {
    margin-bottom: 24px;
  }

  .solution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .solution-card {
    display: flex;
    min-height: 178px;
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px 14px;
  }

  .line-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
  }

  .logo-cloud--brand,
  .logo-cloud--partner {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    padding: 2px 2px 10px;
  }

  .logo-cloud--brand .logo-word {
    flex: 0 0 154px;
    justify-content: center;
    min-height: 64px;
    border: 1px solid #eef1f3;
    border-radius: 10px;
    background: #fff;
    scroll-snap-align: start;
  }

  .logo-cloud--partner .logo-word {
    flex: 0 0 168px;
    min-height: 76px;
    scroll-snap-align: start;
  }

  .reference-stats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 24px 0;
  }

  .reference-stats__grid div {
    border-left: 0;
  }

  .reference-stats strong {
    font-size: 32px;
  }

  .reference-about__copy {
    padding: 44px 0 24px;
  }

  .reference-news-grid,
  .reference-news-grid--hub {
    grid-template-columns: 1fr;
  }

  .reference-news-card {
    border-radius: 14px;
  }

  .reference-news-card div,
  .reference-news-card--hub div {
    min-height: 0;
    padding: 20px;
  }

  .blog-hub__intro {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 18px;
  }

  .blog-hub__intro > .button {
    display: none;
  }

  .blog-topic-strip {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .blog-topic-strip span {
    flex: 0 0 auto;
  }

  .publixo-grid {
    gap: 28px;
  }

  .publixo-features {
    grid-template-columns: 1fr;
  }

  .publixo-screenshot {
    padding: 7px;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(calc(100% - 24px), 1180px);
  }

  .brand__word {
    font-size: 20px;
  }

  .reference-hero__inner {
    min-height: 596px;
    padding: 34px 0 46px;
  }

  .reference-hero__copy {
    max-width: 100%;
  }

  .reference-hero h1 {
    max-width: min(100%, 22rem);
    font-size: clamp(30px, 9.2vw, 36px);
    line-height: 1.12;
  }

  .reference-hero__copy > p {
    max-width: 22rem;
    margin-top: 16px;
  }

  .reference-actions {
    gap: 9px;
    margin-top: 20px;
  }

  .reference-actions .button {
    min-height: 46px;
    padding: 12px 14px;
  }

  .trusted-row {
    max-width: 100%;
    margin-top: 28px;
    overflow: hidden;
  }

  .trusted-row > span,
  .proof-note {
    overflow-wrap: anywhere;
  }

  .logo-cloud--compact {
    gap: 12px 18px;
  }

  .logo-cloud--compact .logo-word {
    font-size: 12px;
  }

  .reference-hero__media img {
    object-position: 73% center;
  }

  .reference-hero__inner > .slider-dots {
    bottom: 15px;
  }

  .reference-heading h2,
  .reference-about h2,
  .blog-hub__intro h2,
  .publixo-copy h2 {
    font-size: clamp(28px, 8.8vw, 36px);
  }

  .reference-heading p,
  .blog-hub__intro p:not(.eyebrow),
  .publixo-copy p:not(.eyebrow) {
    font-size: 14px;
  }

  .publixo-features li {
    min-height: 38px;
    font-size: 12px;
    padding-inline: 12px;
  }

  .portal-actions,
  .portal-actions .button {
    width: 100%;
  }

  .portal-actions .button {
    justify-content: center;
  }

  .publixo-screenshot {
    border-radius: 14px;
  }

  .publixo-screenshot img {
    border-radius: 10px;
  }

  .solution-grid {
    grid-template-columns: 1fr;
  }

  .solution-card {
    min-height: 0;
    text-align: left;
  }

  .solution-card .line-icon {
    margin-left: 0;
    margin-right: 0;
  }

  .reference-stats__grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px 8px;
  }

  .reference-final-cta__inner,
  .article-sidebar {
    border-radius: 14px;
    padding: 22px;
  }

  .article-body p {
    font-size: 17px;
    line-height: 1.72;
  }
}

@media (max-width: 360px) {
  .reference-hero__inner {
    min-height: 568px;
  }

  .reference-hero h1 {
    font-size: 31px;
  }

  .reference-hero__copy > p {
    font-size: 14px;
  }

  .reference-actions .button {
    font-size: 12px;
  }

  .logo-cloud--partner .logo-word {
    flex-basis: 148px;
  }
}

/* One-hand mobile app experience */
@media (max-width: 820px) {
  :root {
    --mobile-dock-height: 78px;
  }

  body {
    background: #f6f7f9;
    padding-bottom: calc(var(--mobile-dock-height) + env(safe-area-inset-bottom));
    -webkit-tap-highlight-color: transparent;
  }

  main {
    padding-bottom: 14px;
  }

  .site-header {
    z-index: 86;
    min-height: 62px;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 8px 28px rgba(7, 16, 21, .06);
    backdrop-filter: saturate(180%) blur(22px);
  }

  .nav-shell {
    min-height: 62px;
    gap: 12px;
  }

  .brand__word,
  .brand strong {
    font-size: 18px;
  }

  .nav-toggle {
    width: 46px;
    height: 46px;
    border-color: rgba(7, 16, 21, .12);
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 10px 28px rgba(7, 16, 21, .08);
  }

  .nav-shell.is-open .site-nav {
    inset: 72px 10px calc(162px + env(safe-area-inset-bottom)) 10px;
    border-radius: 22px;
    padding: 10px;
  }

  .nav-shell.is-open .site-nav a {
    display: flex;
    align-items: center;
    min-height: 52px;
    border-radius: 16px;
    font-size: 19px;
    font-weight: 780;
    padding: 12px 16px;
  }

  .nav-shell.is-open .language-switcher {
    bottom: calc(82px + env(safe-area-inset-bottom));
  }

  .nav-shell.is-open .header-contact {
    bottom: calc(18px + env(safe-area-inset-bottom));
  }

  body.nav-open .mobile-tabbar {
    opacity: 0;
    pointer-events: none;
    transform: translate3d(-50%, 120%, 0);
  }

  .mobile-tabbar {
    position: fixed;
    left: 50%;
    right: auto;
    bottom: max(10px, env(safe-area-inset-bottom));
    z-index: 84;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 4px;
    width: min(500px, calc(100% - 18px));
    min-height: var(--mobile-dock-height);
    border: 1px solid rgba(210, 216, 222, .86);
    border-radius: 24px;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 18px 54px rgba(7, 16, 21, .18);
    padding: 7px;
    transform: translate3d(-50%, 0, 0);
    transition: transform .22s ease, opacity .22s ease;
    backdrop-filter: saturate(180%) blur(24px);
  }

  .mobile-tabbar__item {
    display: grid;
    grid-template-rows: 24px auto;
    place-items: center;
    gap: 4px;
    min-width: 0;
    min-height: 62px;
    border-radius: 18px;
    color: #37414a;
    font-size: 11px;
    font-weight: 780;
    line-height: 1.05;
    text-align: center;
    transition: background .2s ease, color .2s ease, transform .2s ease;
  }

  .mobile-tabbar__item svg {
    width: 22px;
    height: 22px;
  }

  .mobile-tabbar__item span {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-tabbar__item:active {
    transform: scale(.96);
  }

  .mobile-tabbar__item.is-active {
    background: #23201c;
    color: #fff;
  }

  .cookie-consent {
    left: 10px;
    right: 10px;
    bottom: calc(var(--mobile-dock-height) + 22px + env(safe-area-inset-bottom));
    z-index: 90;
    width: auto;
    max-height: min(440px, 52vh);
    overflow-y: auto;
    border-radius: 22px;
    padding: 18px;
  }

  .cookie-consent h2 {
    font-size: 20px;
  }

  .cookie-consent p {
    font-size: 14px;
    line-height: 1.55;
  }

  .cookie-consent__actions {
    grid-template-columns: 1fr 1fr;
  }

  .cookie-consent__actions .button {
    min-height: 48px;
    border-radius: 12px;
  }

  .cookie-consent__actions .button:last-child {
    grid-column: 1 / -1;
  }

  .reference-hero__inner {
    min-height: min(690px, calc(100svh - 62px));
    padding-bottom: 82px;
  }

  .reference-actions .button,
  .reference-final-cta__inner .button,
  .portal-actions .button,
  .contact-form button {
    min-height: 52px;
    border-radius: 14px;
  }

  .solution-card,
  .reference-news-card,
  .portfolio-card,
  .brand-tile,
  .partner-tile,
  .detail-panel,
  .contact-panel,
  .contact-form,
  .faq-list details {
    border-radius: 16px;
  }

  .logo-cloud--compact,
  .logo-cloud--brand,
  .logo-cloud--partner,
  .blog-topic-strip {
    -webkit-overflow-scrolling: touch;
    scroll-padding-inline: 14px;
  }

  .publixo-band {
    padding-block: 54px;
  }

  .publixo-copy h2 {
    max-width: 12ch;
  }

  .publixo-screenshot {
    box-shadow: 0 24px 70px rgba(0, 21, 43, .16);
  }

  .article-layout,
  .contact-layout,
  .service-detail-grid,
  .portfolio-grid,
  .brand-grid,
  .partner-grid {
    gap: 16px;
  }

  .contact-form {
    padding: 18px;
  }

  .contact-form label {
    gap: 8px;
    font-size: 13px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    min-height: 52px;
    border-radius: 14px;
    font-size: 16px;
    padding: 13px 14px;
  }

  .contact-form textarea {
    min-height: 132px;
  }

  .site-footer {
    padding-bottom: calc(118px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 430px) {
  .mobile-tabbar {
    width: calc(100% - 16px);
    border-radius: 22px;
  }

  .mobile-tabbar__item {
    min-height: 60px;
    font-size: 10px;
  }

  .reference-hero__inner {
    min-height: calc(100svh - 62px);
  }

  .reference-hero h1 {
    max-width: 11ch;
  }

  .reference-hero__copy > p {
    max-width: 23rem;
  }

  .trusted-row {
    margin-top: 22px;
  }

  .reference-section,
  .reference-section--news,
  .publixo-band,
  .section {
    padding-block: 38px;
  }

  .reference-final-cta {
    padding-bottom: 18px;
  }

  .reference-final-cta__inner {
    min-height: 0;
  }

  .cookie-consent {
    max-height: 48vh;
  }
}

/* Navigation IA: compact top-level menu with expert B2B grouping. */
.site-nav {
  position: relative;
  min-width: 0;
  gap: 8px;
}

.nav-group {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.site-nav .nav-link,
.nav-trigger {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #23201c;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 760;
  line-height: 1;
  padding: 8px 11px;
  text-decoration: none;
  transition: background .18s ease, color .18s ease;
  white-space: nowrap;
}

.nav-trigger {
  gap: 7px;
}

.nav-trigger::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  margin-top: -3px;
  opacity: .66;
  transform: rotate(45deg);
  transition: transform .18s ease, opacity .18s ease;
}

.site-nav .nav-link:hover,
.site-nav .nav-link.is-active,
.nav-group:hover .nav-trigger,
.nav-group:focus-within .nav-trigger,
.nav-group.is-active .nav-trigger,
.nav-group.is-open .nav-trigger {
  background: rgba(7, 16, 21, .06);
  color: #000;
}

.nav-group:hover .nav-trigger::after,
.nav-group:focus-within .nav-trigger::after,
.nav-group.is-open .nav-trigger::after {
  opacity: 1;
  transform: translateY(2px) rotate(225deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 13px);
  left: 50%;
  z-index: 95;
  display: grid;
  gap: 4px;
  width: min(348px, calc(100vw - 40px));
  border: 1px solid rgba(210, 216, 222, .82);
  border-radius: 18px;
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 28px 86px rgba(7, 16, 21, .16);
  opacity: 0;
  padding: 8px;
  pointer-events: none;
  transform: translate3d(-50%, 10px, 0);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  visibility: hidden;
  backdrop-filter: saturate(180%) blur(24px);
}

.nav-dropdown a {
  display: grid;
  gap: 4px;
  min-height: 58px;
  border-radius: 12px;
  color: #23201c;
  padding: 12px 13px;
  text-decoration: none;
  transition: background .18s ease, color .18s ease;
}

.nav-dropdown a strong {
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0;
  line-height: 1.15;
}

.nav-dropdown a span {
  color: #66727c;
  font-size: 12px;
  font-weight: 540;
  line-height: 1.34;
}

.nav-dropdown a:hover,
.nav-dropdown a.is-active {
  background: #f2f4f7;
  color: #000;
}

.nav-group:hover .nav-dropdown,
.nav-group:focus-within .nav-dropdown,
.nav-group.is-open .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(-50%, 0, 0);
  visibility: visible;
}

@media (max-width: 1180px) {
  .site-nav {
    gap: 4px;
  }

  .site-nav .nav-link,
  .nav-trigger {
    padding-inline: 9px;
  }
}

@media (max-width: 1060px) {
  .site-nav,
  .language-switcher {
    display: none;
  }

  .nav-shell.is-open .site-nav,
  .nav-shell.is-open .language-switcher {
    display: flex;
  }

  .nav-shell.is-open .site-nav {
    position: fixed;
    inset: 72px 10px calc(162px + env(safe-area-inset-bottom)) 10px;
    z-index: 80;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 10px;
    border: 1px solid rgba(210, 216, 222, .86);
    border-radius: 22px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 28px 96px rgba(0, 0, 0, .18);
    overflow-y: auto;
    padding: 10px;
    overscroll-behavior: contain;
    backdrop-filter: saturate(180%) blur(24px);
  }

  .nav-shell.is-open .nav-group {
    position: static;
    display: grid;
    gap: 6px;
  }

  .nav-shell.is-open .nav-trigger,
  .nav-shell.is-open .site-nav .nav-link {
    width: 100%;
    min-height: 50px;
    border-radius: 16px;
    font-size: clamp(16px, 4.8vw, 19px);
    font-weight: 820;
    line-height: 1.14;
    padding: 12px 15px;
  }

  .nav-shell.is-open .nav-trigger {
    justify-content: space-between;
    background: #f5f7f9;
  }

  .nav-shell.is-open .site-nav .nav-link {
    justify-content: flex-start;
    background: #f5f7f9;
    color: #23201c;
  }

  .nav-shell.is-open .site-nav .nav-link.is-active {
    background: #23201c;
    color: #fff;
  }

  .nav-shell.is-open .nav-dropdown {
    position: static;
    width: 100%;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    padding: 0 0 0 8px;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .nav-shell.is-open .nav-dropdown a {
    min-height: 48px;
    border: 1px solid rgba(210, 216, 222, .6);
    border-radius: 14px;
    background: rgba(247, 248, 250, .82);
    padding: 10px 12px;
  }

  .nav-shell.is-open .nav-dropdown a strong {
    font-size: 14px;
  }

  .nav-shell.is-open .nav-dropdown a span {
    font-size: 12px;
  }

  .nav-shell.is-open .nav-dropdown a:hover,
  .nav-shell.is-open .nav-dropdown a.is-active {
    background: #e9edf2;
  }
}

@media (max-width: 430px) {
  .nav-shell.is-open .site-nav {
    inset-inline: 8px;
    padding: 9px;
  }

  .nav-shell.is-open .nav-trigger,
  .nav-shell.is-open .site-nav .nav-link {
    min-height: 48px;
    border-radius: 15px;
  }

  .nav-shell.is-open .nav-dropdown a {
    min-height: 46px;
  }
}

@media (max-width: 1060px) {
  body.nav-open .site-header {
    background: rgba(255, 255, 255, .98);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav-shell.is-open .site-nav {
    inset: 72px 10px calc(18px + env(safe-area-inset-bottom)) 10px;
  }

  .nav-shell.is-open .language-switcher {
    position: fixed;
    top: 12px;
    right: 68px;
    bottom: auto;
    left: auto;
    z-index: 88;
    width: 68px;
  }

  .nav-shell.is-open .language-switcher select {
    width: 100%;
    min-width: 0;
    min-height: 42px;
    border-radius: 999px;
    background: #fff;
    padding: 8px 24px 8px 12px;
  }

  .nav-shell.is-open .header-contact {
    display: none !important;
  }
}

@media (max-width: 820px) {
  .nav-shell.is-open .site-nav {
    inset: 72px 10px calc(18px + env(safe-area-inset-bottom)) 10px;
  }
}

@media (max-width: 430px) {
  .nav-shell.is-open .language-switcher {
    top: 10px;
    right: 62px;
    width: 62px;
  }

  .nav-shell.is-open .language-switcher select {
    min-height: 40px;
    font-size: 12px;
    padding-inline: 10px 22px;
  }
}

/* Production polish: proof-safe claims, conversion paths and aligned footer IA. */
.proof-note {
  display: block;
  max-width: 560px;
  margin-top: 10px;
  color: #6b747d;
  font-size: 11px;
  font-weight: 560;
  line-height: 1.45;
}

.proof-note--center {
  margin: 16px auto 0;
  text-align: center;
}

a.solution-card {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

a.solution-card:hover,
a.solution-card:focus-visible {
  border-color: rgba(7, 16, 21, .2);
  box-shadow: 0 24px 54px rgba(15, 24, 33, .09);
  outline: none;
  transform: translateY(-2px);
}

.contact-paths-section {
  padding-bottom: 0;
}

.contact-path-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.contact-path-card {
  display: grid;
  gap: 9px;
  min-height: 178px;
  border: 1px solid rgba(210, 216, 222, .82);
  border-radius: 16px;
  background: linear-gradient(180deg, #fff, #f8fafc);
  color: #23201c;
  padding: 20px;
  text-decoration: none;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.contact-path-card:hover,
.contact-path-card:focus-visible {
  border-color: rgba(7, 16, 21, .2);
  box-shadow: 0 24px 54px rgba(15, 24, 33, .09);
  outline: none;
  transform: translateY(-2px);
}

.contact-path-card span {
  color: #66727c;
  font-size: 11px;
  font-weight: 820;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.contact-path-card strong {
  font-size: 18px;
  line-height: 1.18;
}

.contact-path-card small {
  color: #5f6871;
  font-size: 13px;
  line-height: 1.48;
}

.site-footer .footer-links {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer .footer-cta {
  display: inline-flex;
  width: max-content;
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  color: #fff;
  padding: 9px 13px;
}

@media (max-width: 1180px) {
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-path-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .footer-grid,
  .contact-path-grid {
    grid-template-columns: 1fr;
  }

  .contact-path-card {
    min-height: 0;
    border-radius: 16px;
    padding: 18px;
  }
}

.admin-hero {
  background: linear-gradient(180deg, #f2f0ea, #fff);
}

.admin-section {
  background: #f5f7f9;
}

.admin-shell {
  display: grid;
  gap: 22px;
}

.admin-status {
  display: inline-flex;
  width: max-content;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 780;
  margin-top: 18px;
  padding: 8px 12px;
}

.admin-status--ok {
  background: #e8f7ef;
  color: #0f6b4f;
}

.admin-status--warn {
  background: #fff3cd;
  color: #7a5200;
}

.admin-locale {
  display: flex;
  align-items: end;
  gap: 12px;
}

.admin-toolbar {
  position: sticky;
  top: 84px;
  z-index: 18;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(210, 216, 222, .86);
  border-radius: 12px;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 14px 34px rgba(12, 24, 36, .08);
  padding: 10px;
  backdrop-filter: blur(14px);
}

.admin-toolbar__links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-toolbar a,
.admin-toolbar span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 820;
  padding: 8px 11px;
}

.admin-toolbar a {
  border: 1px solid #e8edf2;
  background: #f8fafc;
  color: #26313b;
}

.admin-toolbar a:hover {
  border-color: rgba(178, 122, 48, .48);
  background: #fff8eb;
  color: #8a5521;
}

.admin-toolbar span {
  background: #e8f7ef;
  color: #0f6b4f;
  white-space: nowrap;
}

.admin-locale label,
.admin-panel label {
  display: grid;
  gap: 7px;
  color: #4e5964;
  font-size: 13px;
  font-weight: 760;
}

.admin-locale select,
.admin-panel input,
.admin-panel select,
.admin-panel textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(196, 204, 212, .9);
  border-radius: 12px;
  background: #fff;
  color: #23201c;
  font: inherit;
  font-size: 15px;
  padding: 10px 12px;
}

.admin-panel textarea {
  min-height: 92px;
  resize: vertical;
}

.admin-stat-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
}

.admin-stat,
.admin-panel {
  border: 1px solid rgba(210, 216, 222, .86);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(12, 24, 36, .06);
}

.admin-stat {
  padding: 18px;
}

.admin-stat strong {
  display: block;
  color: #23201c;
  font-size: 30px;
  line-height: 1;
}

.admin-stat span {
  display: block;
  margin-top: 8px;
  color: #66727c;
  font-size: 13px;
  font-weight: 720;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.admin-workspace {
  display: grid;
  gap: 16px;
  scroll-margin-top: 130px;
}

.admin-panel {
  display: grid;
  gap: 13px;
  padding: 20px;
  scroll-margin-top: 130px;
}

.admin-panel h2 {
  margin: 0 0 4px;
  color: #23201c;
  font-size: 20px;
}

.admin-panel__heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
}

.admin-panel h3 {
  margin: 0;
  color: #23201c;
  font-size: 15px;
}

.admin-panel code {
  border: 1px solid rgba(210, 216, 222, .86);
  border-radius: 8px;
  background: #f7f9fb;
  color: #23201c;
  font-size: .92em;
  padding: 2px 6px;
}

.admin-panel p {
  margin: 0;
  color: #5d6872;
}

.admin-article-editor {
  gap: 18px;
}

.admin-editor-grid {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(360px, 1.15fr) minmax(300px, .95fr);
  gap: 14px;
}

.admin-editor-section {
  display: grid;
  align-content: start;
  gap: 12px;
  border: 1px solid #edf0f2;
  border-radius: 10px;
  background: #fbfcfd;
  padding: 14px;
}

.admin-editor-section--content {
  background: #fff;
}

.admin-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.admin-toggle-row,
.admin-editor-actions,
.admin-row-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-editor-actions {
  justify-content: space-between;
  border-top: 1px solid #edf0f2;
  padding-top: 14px;
}

.admin-counter {
  color: #7a8591;
  font-size: 12px;
  font-weight: 760;
}

.admin-counter--ok {
  color: #0f6b4f;
}

.admin-counter--warn {
  color: #9f1d1d;
}

.admin-seo-preview {
  display: grid;
  gap: 5px;
  border: 1px solid #e3e9ef;
  border-radius: 10px;
  background: #fff;
  padding: 12px;
}

.admin-seo-preview span {
  color: #74808b;
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.admin-seo-preview strong {
  color: #145da0;
  font-size: 13px;
  overflow-wrap: anywhere;
}

.admin-seo-checklist {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.admin-seo-checklist li {
  position: relative;
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 8px;
  color: #5f6b76;
  font-size: 13px;
  font-weight: 720;
}

.admin-seo-checklist li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #d2d9e0;
  margin-top: 5px;
}

.admin-seo-checklist li.is-ok::before {
  background: #20a36b;
  box-shadow: 0 0 0 4px rgba(32, 163, 107, .12);
}

.admin-seo-checklist li.is-warn::before {
  background: #d89614;
  box-shadow: 0 0 0 4px rgba(216, 150, 20, .14);
}

.admin-pill {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 26px;
  border-radius: 999px;
  background: #edf2f7;
  color: #38424c;
  font-size: 12px;
  font-weight: 820;
  padding: 5px 9px;
}

.admin-pill--new {
  background: #e8efed;
  color: #145da0;
}

.admin-pill--contacted,
.admin-pill--qualified {
  background: #fff3cd;
  color: #7a5200;
}

.admin-pill--won {
  background: #e8f7ef;
  color: #0f6b4f;
}

.admin-pill--active {
  background: #e8f7ef;
  color: #0f6b4f;
}

.admin-pill--unsubscribed {
  background: #fef0f0;
  color: #9f1d1d;
}

.admin-pill--lost,
.admin-pill--archived {
  background: #f1f3f5;
  color: #59636e;
}

.admin-maintenance {
  grid-template-columns: minmax(0, 1fr) minmax(240px, .55fr);
  align-items: start;
}

.admin-readiness {
  grid-template-columns: minmax(240px, .55fr) minmax(0, 1fr);
  align-items: start;
}

.admin-readiness ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.admin-check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  min-height: 86px;
  border: 1px solid #edf0f2;
  border-radius: 14px;
  background: #fafbfc;
  padding: 12px;
}

.admin-check > span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  margin-top: 5px;
}

.admin-check--ok > span {
  background: #20a36b;
  box-shadow: 0 0 0 5px rgba(32, 163, 107, .12);
}

.admin-check--warn > span {
  background: #d89614;
  box-shadow: 0 0 0 5px rgba(216, 150, 20, .14);
}

.admin-check strong,
.admin-check small {
  display: block;
}

.admin-check strong {
  color: #23201c;
  font-size: 13px;
}

.admin-check small {
  color: #6a7480;
  font-size: 12px;
  font-weight: 680;
  margin-top: 4px;
}

.admin-actions {
  display: grid;
  gap: 10px;
}

.admin-actions form,
.admin-actions .button {
  width: 100%;
}

.admin-update-upload {
  display: grid;
  grid-column: 1 / -1;
  gap: 12px;
  border: 1px solid rgba(210, 216, 222, .86);
  border-radius: 16px;
  background: linear-gradient(180deg, #fbfcfd, #f4f7f9);
  padding: 16px;
}

.admin-update-upload input[type="file"] {
  border-style: dashed;
  background: #fff;
  cursor: pointer;
}

.admin-update-upload .button {
  width: fit-content;
}

.button--compact {
  min-height: 38px;
  padding: 9px 13px;
}

.admin-backups {
  display: grid;
  grid-column: 1 / -1;
  gap: 10px;
}

.admin-backups ul {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.admin-backups li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid #edf0f2;
  border-radius: 14px;
  background: #fafbfc;
  padding: 12px;
}

.admin-backups strong,
.admin-backups small {
  display: block;
}

.admin-backups strong {
  color: #23201c;
  font-size: 14px;
}

.admin-backups small,
.admin-muted {
  color: #6a7480;
  font-size: 12px;
  font-weight: 720;
}

.admin-table td strong,
.admin-table td small {
  display: block;
}

.admin-table td small {
  color: #74808b;
  font-size: 12px;
  margin-top: 4px;
}

.admin-table__article {
  min-width: 240px;
}

.admin-table__actions {
  min-width: 178px;
}

.admin-row-actions .button {
  white-space: nowrap;
}

.admin-leads {
  gap: 18px;
}

.admin-lead-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.admin-lead-card {
  display: grid;
  gap: 12px;
  border: 1px solid #edf0f2;
  border-radius: 16px;
  background: #fafbfc;
  padding: 14px;
}

.admin-lead-card__top,
.admin-lead-card__meta {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.admin-lead-card__top strong,
.admin-lead-card__top small,
.admin-lead-card__meta a,
.admin-lead-card__meta span {
  display: block;
}

.admin-lead-card__top strong {
  color: #23201c;
  font-size: 15px;
}

.admin-lead-card__top small,
.admin-lead-card > small {
  color: #68737e;
  font-size: 12px;
  font-weight: 720;
}

.admin-lead-card__meta {
  justify-content: start;
  flex-wrap: wrap;
  color: #59636e;
  font-size: 12px;
  font-weight: 720;
}

.admin-lead-card__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.admin-lead-card__fields .full {
  grid-column: 1 / -1;
}

.admin-empty {
  border: 1px dashed #ccd4dc;
  border-radius: 16px;
  color: #66727c;
  font-weight: 760;
  padding: 18px;
}

.admin-panel .check {
  display: flex;
  align-items: center;
  gap: 8px;
}

.admin-panel .check input {
  width: auto;
  min-height: 0;
}

.admin-panel--wide {
  overflow: hidden;
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.admin-table th,
.admin-table td {
  border-top: 1px solid #edf0f2;
  color: #4f5963;
  font-size: 13px;
  padding: 12px;
  text-align: left;
}

.admin-table th {
  color: #23201c;
  font-weight: 820;
}

@media (max-width: 1180px) {
  .admin-stat-grid,
  .admin-readiness ul,
  .admin-grid,
  .admin-lead-grid,
  .admin-editor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-editor-section--content {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .admin-locale {
    display: grid;
  }

  .admin-readiness,
  .admin-maintenance,
  .admin-stat-grid,
  .admin-readiness ul,
  .admin-grid,
  .admin-lead-grid,
  .admin-lead-card__fields {
    grid-template-columns: 1fr;
  }

  .admin-panel__heading,
  .admin-lead-card__top,
  .admin-toolbar {
    display: grid;
  }

  .admin-toolbar {
    position: static;
  }

  .admin-toggle-row,
  .admin-editor-actions,
  .admin-row-actions {
    align-items: stretch;
    display: grid;
  }

  .admin-toolbar__links {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: thin;
  }

  .admin-toolbar span,
  .admin-row-actions .button {
    width: 100%;
    justify-content: center;
  }

  .admin-toolbar a {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .admin-editor-grid,
  .admin-field-grid {
    grid-template-columns: 1fr;
  }

  .admin-backups li {
    align-items: stretch;
    display: grid;
  }
}

/* Corporate cookie consent and policy page */
.cookie-consent {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  left: auto;
  z-index: 95;
  display: block;
  width: min(760px, calc(100vw - 36px));
  max-height: min(760px, calc(100svh - 36px));
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.cookie-consent[hidden],
.cookie-consent__preferences[hidden],
.cookie-consent__actions [hidden] {
  display: none !important;
}

.cookie-consent__surface {
  display: flex;
  flex-direction: column;
  max-height: inherit;
  overflow: hidden;
  border: 1px solid rgba(210, 210, 215, .9);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(246, 248, 251, .95)),
    #fff;
  box-shadow: 0 34px 100px rgba(7, 16, 21, .22);
  backdrop-filter: blur(24px) saturate(180%);
}

.cookie-consent__header {
  flex: 0 0 auto;
  padding: 24px 26px 16px;
}

.cookie-consent__eyebrow,
.cookie-policy-card span,
.cookie-policy-control small {
  color: var(--gold);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: .08em;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.cookie-consent h2 {
  margin: 0 0 10px;
  max-width: 620px;
  color: #23201c;
  font-size: 24px;
  letter-spacing: 0;
  line-height: 1.12;
}

.cookie-consent p,
.cookie-consent small {
  color: #56616b;
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

.cookie-consent__summary {
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0 26px 18px;
}

.cookie-consent__summary span {
  min-height: 82px;
  border: 1px solid rgba(210, 216, 222, .85);
  border-radius: 16px;
  background: rgba(255, 255, 255, .74);
  padding: 14px;
}

.cookie-consent__summary strong,
.cookie-consent__summary small {
  display: block;
}

.cookie-consent__summary strong {
  color: #23201c;
  font-size: 14px;
  font-weight: 820;
}

.cookie-consent__summary small {
  margin-top: 4px;
}

.cookie-consent__preferences {
  flex: 1 1 auto;
  display: grid;
  gap: 10px;
  min-height: 0;
  max-height: min(300px, 34svh);
  overflow-y: auto;
  border-block: 1px solid rgba(210, 216, 222, .8);
  background: rgba(247, 249, 251, .86);
  padding: 14px 26px;
}

.cookie-option {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 86px;
  border: 1px solid rgba(210, 216, 222, .9);
  border-radius: 18px;
  background: #fff;
  cursor: pointer;
  padding: 14px;
}

.cookie-option--locked {
  cursor: default;
}

.cookie-option input {
  position: relative;
  width: 50px;
  height: 30px;
  margin: 0;
  appearance: none;
  border: 1px solid #c9d1d8;
  border-radius: 999px;
  background: #dfe5ea;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease;
}

.cookie-option input::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 3px 10px rgba(7, 16, 21, .18);
  transition: transform .18s ease;
}

.cookie-option input:checked {
  border-color: var(--gold);
  background: var(--gold);
}

.cookie-option input:checked::after {
  transform: translateX(20px);
}

.cookie-option input:disabled {
  cursor: not-allowed;
  opacity: .86;
}

.cookie-option__body,
.cookie-option__top {
  display: grid;
  gap: 5px;
}

.cookie-option__top {
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 12px;
}

.cookie-option strong {
  color: #23201c;
  font-size: 15px;
  font-weight: 820;
  line-height: 1.2;
}

.cookie-option em {
  border-radius: 999px;
  background: #eef5ff;
  color: #0759b8;
  font-size: 11px;
  font-style: normal;
  font-weight: 820;
  padding: 5px 9px;
  white-space: nowrap;
}

.cookie-option span span:last-child {
  color: #5f6b75;
  font-size: 13px;
  line-height: 1.45;
}

.cookie-consent__footer {
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 26px 22px;
  background: rgba(255, 255, 255, .92);
}

.cookie-consent__footer > a {
  color: #4b5661;
  font-size: 13px;
  font-weight: 760;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.cookie-consent__actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.cookie-consent__actions .button {
  min-height: 46px;
  white-space: nowrap;
}

.cookie-consent__actions .button:last-child {
  grid-column: auto;
}

.cookie-consent.is-configuring [data-cookie-customize] {
  display: none;
}

.cookie-policy-section {
  background:
    radial-gradient(circle at 82% 10%, rgba(138, 90, 43, .09), transparent 32%),
    linear-gradient(180deg, #fff, #f7f9fb);
}

.cookie-policy-layout {
  display: grid;
  grid-template-columns: minmax(280px, 360px) 1fr;
  gap: 26px;
  align-items: start;
}

.cookie-policy-control {
  position: sticky;
  top: 124px;
  border: 1px solid rgba(210, 216, 222, .9);
  border-radius: 24px;
  background: #23201c;
  color: #fff;
  box-shadow: 0 24px 70px rgba(7, 16, 21, .18);
  padding: 26px;
}

.cookie-policy-control h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 28px;
  line-height: 1.12;
}

.cookie-policy-control p {
  color: rgba(255, 255, 255, .76);
  margin: 0 0 18px;
}

.cookie-policy-control .button {
  width: 100%;
}

.cookie-policy-control small {
  display: block;
  margin-top: 16px;
  color: rgba(255, 255, 255, .58);
}

.cookie-policy-status {
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 16px;
  background: rgba(255, 255, 255, .08);
  padding: 13px;
}

.cookie-policy-main {
  display: grid;
  gap: 18px;
}

.cookie-policy-intro,
.cookie-policy-note {
  max-width: none;
}

.cookie-policy-principles {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.cookie-policy-principles li {
  position: relative;
  color: #48525d;
  padding-left: 24px;
}

.cookie-policy-principles li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.cookie-policy-grid {
  display: grid;
  gap: 14px;
}

.cookie-policy-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, .9fr);
  gap: 22px;
  border: 1px solid rgba(210, 216, 222, .9);
  border-radius: 22px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 18px 50px rgba(7, 16, 21, .06);
  padding: 24px;
}

.cookie-policy-card h2 {
  margin: 0 0 10px;
  color: #23201c;
  font-size: 24px;
  line-height: 1.15;
}

.cookie-policy-card p {
  color: #5f6b75;
  margin: 0;
}

.cookie-policy-card dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.cookie-policy-card dl div {
  border-radius: 14px;
  background: #f5f7f9;
  padding: 12px;
}

.cookie-policy-card dt {
  color: #23201c;
  font-size: 12px;
  font-weight: 820;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.cookie-policy-card dd {
  color: #56616b;
  margin: 0;
}

@media (max-width: 920px) {
  .cookie-consent {
    right: 12px;
    bottom: calc(var(--mobile-dock-height, 0px) + 16px + env(safe-area-inset-bottom));
    left: 12px;
    width: auto;
    max-height: min(680px, calc(100svh - var(--mobile-dock-height, 0px) - 32px));
  }

  .cookie-consent__surface {
    border-radius: 24px;
  }

  .cookie-consent__preferences {
    max-height: min(250px, 28svh);
  }

  .cookie-consent.is-configuring .cookie-consent__summary {
    display: none;
  }

  .cookie-consent__summary,
  .cookie-consent__footer,
  .cookie-policy-layout,
  .cookie-policy-card {
    grid-template-columns: 1fr;
  }

  .cookie-consent__footer {
    align-items: stretch;
  }

  .cookie-consent__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-consent__actions .button {
    width: 100%;
  }

  .cookie-consent__actions [data-cookie-accept],
  .cookie-consent__actions [data-cookie-save] {
    grid-column: 1 / -1;
  }

  .cookie-policy-control {
    position: static;
  }
}

@media (max-width: 520px) {
  .cookie-consent {
    right: 8px;
    left: 8px;
    bottom: calc(var(--mobile-dock-height, 0px) + 10px + env(safe-area-inset-bottom));
    max-height: min(560px, calc(100svh - var(--mobile-dock-height, 0px) - 20px));
  }

  .cookie-consent:not(.is-configuring) .cookie-consent__summary {
    display: none;
  }

  .cookie-consent__header,
  .cookie-consent__summary,
  .cookie-consent__preferences,
  .cookie-consent__footer {
    padding-inline: 16px;
  }

  .cookie-consent__header {
    padding-block: 16px 8px;
  }

  .cookie-consent__eyebrow {
    margin-bottom: 4px;
  }

  .cookie-consent h2 {
    margin-bottom: 6px;
    font-size: 20px;
  }

  .cookie-consent p,
  .cookie-consent small {
    font-size: 13px;
    line-height: 1.45;
  }

  .cookie-option {
    grid-template-columns: 46px 1fr;
    gap: 11px;
    padding: 12px;
  }

  .cookie-option__top {
    grid-template-columns: 1fr;
  }

  .cookie-consent__actions {
    grid-template-columns: 1fr 1fr;
  }

  .cookie-consent__actions [data-cookie-accept] {
    grid-column: 1 / -1;
  }

  .cookie-consent__actions [data-cookie-save] {
    grid-column: auto;
  }

  .cookie-consent.is-configuring .cookie-consent__actions {
    grid-template-columns: 1fr;
  }

  .cookie-consent.is-configuring .cookie-consent__actions [data-cookie-save] {
    grid-column: auto;
  }

  .cookie-consent__actions .button {
    min-height: 44px;
  }

  .cookie-policy-control,
  .cookie-policy-card,
  .cookie-policy-intro,
  .cookie-policy-note {
    border-radius: 18px;
    padding: 20px;
  }
}

/* Corporate polish pass: calmer typography, softer contrast and restrained surfaces. */
body {
  color: #111820;
  background: #f6f8fa;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.site-header {
  background: rgba(249, 250, 252, .88);
  border-bottom-color: rgba(209, 216, 224, .72);
}

.brand__word {
  color: #0a1016;
  font-weight: 760;
}

.site-nav a {
  color: #2d3741;
  font-weight: 610;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: #23201c;
}

.header-contact {
  border-radius: 6px;
  background: #0c1721;
  font-weight: 680;
}

.button {
  border-radius: 7px;
  font-weight: 660;
}

.button--primary {
  background: #0c1721;
  box-shadow: 0 12px 28px rgba(7, 16, 21, .12);
}

.button--primary:hover {
  background: #182635;
}

.button--outline {
  border-color: #cfd6dd;
  color: #101820;
}

.eyebrow,
.kicker,
.service-card__code,
.reference-kicker,
.cookie-consent__eyebrow,
.cookie-policy-card span,
.cookie-policy-control small {
  color: #7f5227;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .045em;
}

.reference-hero h1 {
  max-width: 640px;
  color: #101820;
  font-size: clamp(44px, 4vw, 54px);
  font-weight: 520;
  line-height: 1.12;
}

.reference-hero__copy > p {
  color: #31404d;
  font-size: 15px;
  line-height: 1.7;
}

.reference-heading h2,
.blog-hub__intro h2,
.publixo-copy h2,
.reference-about h2 {
  color: #101820;
  font-weight: 540;
}

.reference-heading p,
.publixo-copy p:not(.eyebrow),
.reference-about p:not(.reference-kicker),
.reference-news-card p,
.article-sidebar p:not(.eyebrow) {
  color: #53616d;
}

.solution-card,
.reference-news-card,
.logo-cloud--partner .logo-word,
.readiness-usecases article,
.article-sidebar,
.cookie-policy-card {
  border-color: #e3e9ef;
  border-radius: 10px;
  box-shadow: 0 14px 34px rgba(15, 24, 33, .045);
}

.solution-card {
  background: linear-gradient(180deg, #fff, #f9fbfc);
}

.solution-card h3,
.reference-news-card h3,
.readiness-option strong,
.readiness-group legend strong,
.readiness-usecases strong {
  font-weight: 640;
}

.logo-word {
  font-weight: 760;
}

.line-icon {
  color: #16212b;
  stroke-width: 1.55;
}

.reference-stats {
  background: linear-gradient(90deg, #0d1720, #182737);
}

.reference-stats strong {
  font-weight: 650;
}

.reference-final-cta__inner {
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(13, 23, 32, .98), rgba(24, 39, 55, .96)),
    #0d1720;
}

.reference-final-cta h2,
.site-footer h2 {
  font-weight: 650;
}

.site-footer {
  background: #0b141c;
}

.page-hero,
.article-header {
  background:
    linear-gradient(115deg, rgba(248, 250, 252, .98), rgba(238, 243, 248, .92) 54%, rgba(230, 237, 245, .82)),
    url("/assets/images/mexcor-hero.jpg") center / cover;
  color: #101820;
  padding: 96px 0 72px;
}

.page-hero h1,
.article-header h1 {
  color: #101820;
  font-size: clamp(40px, 4.2vw, 52px);
  font-weight: 560;
  line-height: 1.1;
}

.feature-hero h1 {
  color: #fff;
  font-size: clamp(40px, 4.2vw, 52px);
  font-weight: 560;
  line-height: 1.1;
}

.feature-hero p {
  color: rgba(255, 255, 255, .78);
}

.page-hero p,
.article-header p {
  color: #52616d;
}

.page-hero .eyebrow,
.article-header .eyebrow {
  color: #7f5227;
}

.breadcrumbs {
  color: #6a7580;
  font-weight: 620;
}

.breadcrumbs a {
  color: #172431;
}

.readiness-section {
  background:
    radial-gradient(circle at 12% 0, rgba(30, 108, 184, .10), transparent 32%),
    linear-gradient(180deg, #fff 0%, #f6f8fa 100%);
}

.readiness-shell {
  border-color: #e1e8ef;
  border-radius: 18px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 20px 54px rgba(15, 24, 33, .07);
  backdrop-filter: blur(18px);
}

.readiness-heading h2 {
  max-width: 720px;
  color: #101820;
  font-size: clamp(30px, 3.1vw, 42px);
  font-weight: 540;
  line-height: 1.14;
}

.readiness-heading p:not(.eyebrow) {
  color: #52616d;
  font-size: 16px;
}

.readiness-note {
  border-color: #cfdfef;
  border-radius: 12px;
  background: #f3f8fd;
  color: #315f8b;
}

.readiness-note strong {
  color: #101820;
  font-weight: 640;
}

.readiness-group {
  border-color: #e3e9ef;
  border-radius: 14px;
  background: rgba(255, 255, 255, .96);
}

.readiness-option {
  min-height: 74px;
  border-color: #e1e7ed;
  border-radius: 10px;
  background: #fff;
}

.readiness-option:hover {
  border-color: rgba(23, 104, 184, .32);
  box-shadow: 0 10px 24px rgba(15, 24, 33, .055);
}

.readiness-option:has(input:checked) {
  border-color: rgba(23, 104, 184, .42);
  background: #f5f9fd;
}

.readiness-option em {
  background: #eef2f6;
  color: #40505f;
  font-weight: 670;
}

.readiness-result {
  border-radius: 14px;
  background:
    radial-gradient(circle at 86% 0, rgba(83, 145, 203, .22), transparent 36%),
    linear-gradient(180deg, #132231, #0c1721);
  box-shadow: 0 20px 54px rgba(7, 16, 21, .16);
}

.readiness-score {
  font-weight: 620;
  font-size: clamp(48px, 6vw, 68px);
}

.readiness-scoreline span,
.readiness-next h3 {
  font-weight: 650;
}

.readiness-status h2 {
  font-weight: 560;
}

.readiness-reset {
  font-weight: 620;
}

.mobile-tabbar {
  border-radius: 18px;
  box-shadow: 0 16px 42px rgba(7, 16, 21, .14);
}

.mobile-tabbar__item {
  border-radius: 12px;
  font-weight: 650;
}

.mobile-tabbar__item.is-active {
  background: #0c1721;
}

@media (max-width: 820px) {
  .page-hero,
  .article-header {
    padding: 64px 0 44px;
  }

  .page-hero h1,
  .article-header h1 {
    font-size: clamp(34px, 8.8vw, 46px);
    font-weight: 560;
  }

  .reference-hero h1 {
    max-width: min(100%, 22rem);
    font-size: clamp(30px, 9.2vw, 36px);
    line-height: 1.12;
  }

  .nav-toggle {
    border-radius: 16px;
    background: rgba(255, 255, 255, .92);
  }
}

@media (max-width: 620px) {
  .readiness-shell {
    border-radius: 16px;
    padding: 14px;
  }

  .readiness-heading h2 {
    font-size: 29px;
    line-height: 1.13;
  }

  .readiness-heading p:not(.eyebrow) {
    font-size: 15px;
  }

  .readiness-note,
  .readiness-group,
  .readiness-result,
  .readiness-usecases article {
    border-radius: 12px;
  }

  .readiness-score {
    font-size: 48px;
  }
}

/* Corporate mobile consent refinement: compact first layer with app-like reachability. */
@media (max-width: 520px) {
  body.has-cookie-consent-open .mobile-tabbar {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 110%);
  }

  .cookie-consent {
    right: 10px;
    left: 10px;
    bottom: max(8px, env(safe-area-inset-bottom));
    max-width: calc(100vw - 20px);
    max-height: min(460px, calc(100svh - 16px));
  }

  .cookie-consent__surface {
    border-radius: 18px;
    box-shadow: 0 18px 46px rgba(7, 16, 21, .16);
  }

  .cookie-consent__header {
    padding: 14px 16px 8px;
  }

  .cookie-consent__eyebrow {
    font-size: 10px;
    letter-spacing: .07em;
  }

  .cookie-consent h2 {
    font-size: 20px;
    line-height: 1.08;
  }

  .cookie-consent p,
  .cookie-consent small {
    font-size: 12.5px;
    line-height: 1.42;
  }

  .cookie-consent__footer {
    gap: 9px;
    padding: 10px 16px 14px;
  }

  .cookie-consent__footer > a {
    font-size: 12px;
    width: max-content;
  }

  .cookie-consent__actions {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .cookie-consent__actions .button {
    min-height: 40px;
    border-radius: 10px;
    font-size: 12.5px;
    line-height: 1.15;
    padding: 9px 10px;
    white-space: normal;
  }

  .cookie-consent__preferences {
    max-height: min(300px, 42svh);
    padding-block: 10px;
  }
}

@media (max-width: 360px) and (max-height: 620px) {
  .cookie-consent p {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .cookie-consent__header {
    padding: 13px 16px 6px;
  }

  .cookie-consent h2 {
    font-size: 18px;
  }

  .cookie-consent__footer {
    padding: 8px 16px 12px;
  }

  .cookie-consent__actions .button {
    min-height: 38px;
  }
}

/* Production installer wizard */
.install-body {
  min-height: 100svh;
  background:
    radial-gradient(circle at 20% 0, rgba(23, 104, 184, .12), transparent 34%),
    linear-gradient(180deg, #f7f9fb 0%, #eef3f7 100%);
}

.install-page {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 42px 0 64px;
}

.install-hero,
.install-complete {
  border: 1px solid rgba(215, 222, 229, .92);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .96), rgba(246, 249, 252, .9)),
    #fff;
  box-shadow: 0 24px 70px rgba(12, 24, 36, .08);
}

.install-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 20px;
  padding: clamp(28px, 5vw, 52px);
}

.install-hero h1,
.install-complete h1 {
  max-width: 760px;
  margin: 0;
  color: #101820;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 540;
  line-height: 1.04;
}

.install-hero p:not(.eyebrow),
.install-complete p {
  max-width: 760px;
  margin: 18px 0 0;
  color: #53616d;
  font-size: 17px;
  line-height: 1.65;
}

.install-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.install-steps li {
  display: grid;
  gap: 8px;
  min-width: 92px;
  border: 1px solid #e1e7ed;
  border-radius: 10px;
  background: rgba(255, 255, 255, .78);
  color: #41505d;
  font-size: 12px;
  font-weight: 690;
  padding: 12px;
}

.install-steps span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #0c1721;
  color: #fff;
  font-size: 12px;
}

.install-grid {
  display: grid;
  grid-template-columns: minmax(260px, .42fr) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.install-panel {
  display: grid;
  gap: 16px;
  border: 1px solid rgba(215, 222, 229, .92);
  border-radius: 14px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 16px 44px rgba(12, 24, 36, .055);
  padding: 22px;
}

fieldset.install-panel {
  margin: 0;
  padding-top: 22px;
}

.install-panel--sticky {
  position: sticky;
  top: 92px;
}

.install-panel h2,
.install-panel legend {
  color: #101820;
  font-size: 20px;
  font-weight: 640;
}

.install-panel legend {
  float: left;
  width: 100%;
  margin: 0 0 4px;
  padding: 0;
}

.install-panel legend + * {
  clear: both;
}

.install-panel p,
.install-help,
.install-actions p {
  margin: 0;
  color: #5b6873;
  font-size: 14px;
  line-height: 1.55;
}

.install-checklist {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.install-checkline {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px 10px;
  align-items: center;
  border: 1px solid #e6ebf0;
  border-radius: 10px;
  background: #fbfcfd;
  padding: 12px;
}

.install-checkline > span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.install-checkline--ok > span {
  background: #1f9d68;
  box-shadow: 0 0 0 5px rgba(31, 157, 104, .12);
}

.install-checkline--warn > span {
  background: #d49a16;
  box-shadow: 0 0 0 5px rgba(212, 154, 22, .13);
}

.install-checkline--error > span {
  background: #b42318;
  box-shadow: 0 0 0 5px rgba(180, 35, 24, .11);
}

.install-checkline strong {
  color: #101820;
  font-size: 13px;
}

.install-checkline em {
  color: #455361;
  font-size: 12px;
  font-style: normal;
  font-weight: 650;
}

.install-checkline small {
  grid-column: 2 / -1;
  color: #687682;
  font-size: 12px;
  line-height: 1.4;
}

.install-form {
  display: grid;
  gap: 16px;
}

.install-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.install-fields .full,
.install-check.full {
  grid-column: 1 / -1;
}

.install-form label {
  display: grid;
  gap: 7px;
  color: #2c3945;
  font-size: 13px;
  font-weight: 680;
}

.install-form input,
.install-form select {
  min-height: 48px;
  width: 100%;
  border: 1px solid #cfd8e1;
  border-radius: 9px;
  background: #fff;
  color: #101820;
  font: inherit;
  font-weight: 560;
  padding: 11px 13px;
}

.install-form input:focus,
.install-form select:focus {
  border-color: #7f5227;
  box-shadow: 0 0 0 4px rgba(127, 82, 39, .12);
  outline: 0;
}

.install-check {
  grid-template-columns: auto 1fr;
  align-items: center;
  min-height: 48px;
  border: 1px solid #e1e7ed;
  border-radius: 10px;
  background: #f8fafc;
  padding: 11px 13px;
}

.install-check input {
  width: 18px;
  min-height: 18px;
}

.install-actions {
  display: grid;
  gap: 10px;
  justify-items: start;
  border: 1px solid rgba(23, 104, 184, .16);
  border-radius: 14px;
  background: #f4f8fc;
  padding: 18px;
}

.install-actions--inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.install-form .flash ul,
.install-complete ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 18px;
}

.install-complete {
  max-width: 840px;
  margin: 60px auto 0;
  padding: clamp(30px, 6vw, 60px);
}

.install-complete ul {
  color: #465461;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .install-page {
    width: min(calc(100% - 24px), 720px);
    padding: 18px 0 40px;
  }

  .install-hero,
  .install-grid {
    grid-template-columns: 1fr;
  }

  .install-panel--sticky {
    position: static;
  }

  .install-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .install-page {
    width: min(calc(100% - 20px), 480px);
  }

  .install-hero,
  .install-panel,
  .install-complete {
    border-radius: 14px;
    padding: 18px;
  }

  .install-hero h1,
  .install-complete h1 {
    font-size: 34px;
  }

  .install-hero p:not(.eyebrow),
  .install-complete p {
    font-size: 15px;
  }

  .install-fields {
    grid-template-columns: 1fr;
  }

  .install-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .install-checkline {
    grid-template-columns: auto 1fr;
  }

  .install-checkline em,
  .install-checkline small {
    grid-column: 2;
  }

  .install-actions .button {
    width: 100%;
  }
}

/* Production refinements: admin, services, custom interiors and article scale */
.service-architecture-section {
  background:
    radial-gradient(circle at 12% 0, rgba(138, 90, 43, .08), transparent 34%),
    linear-gradient(180deg, #fff 0%, #f4f2ee 100%);
}

.service-architecture-section .service-pillar-grid {
  margin-bottom: 24px;
}

.service-system-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-system-card,
.service-proof-grid article,
.interiors-intro,
.interiors-segments article,
.admin-login-card,
.admin-settings {
  border: 1px solid rgba(210, 216, 222, .78);
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 18px 48px rgba(16, 24, 32, .06);
}

.service-system-card {
  min-height: 320px;
  border-radius: 18px;
  padding: clamp(22px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-system-card span {
  width: max-content;
  border-radius: 999px;
  background: #ece5d9;
  color: #7f5227;
  font-size: 12px;
  font-weight: 760;
  padding: 6px 10px;
}

.service-system-card h2 {
  margin: 26px 0 10px;
  font-size: clamp(23px, 2.1vw, 30px);
  font-weight: 610;
  line-height: 1.18;
}

.service-system-card p {
  color: #53606c;
  margin: 0 0 28px;
}

.service-proof-section {
  background: #f4f2ee;
}

.service-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.service-proof-grid article {
  border-radius: 16px;
  padding: 24px;
}

.service-proof-grid strong {
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
}

.service-proof-grid p {
  color: #5a6670;
  margin: 0;
}

.seo-intent-section {
  border-block: 1px solid rgba(210, 216, 222, .72);
}

.seo-intent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.seo-intent-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 238px;
  border: 1px solid rgba(210, 216, 222, .78);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(16, 24, 32, .05);
  padding: 18px;
}

.seo-intent-card span {
  width: fit-content;
  border: 1px solid #e8dcc8;
  border-radius: 999px;
  background: #fff8eb;
  color: #805321;
  font-size: 12px;
  font-weight: 820;
  padding: 5px 9px;
}

.seo-intent-card h3 {
  margin: 0;
  color: #23201c;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.16;
}

.seo-intent-card p {
  margin: 0;
  color: #59636e;
}

.seo-intent-card .text-link {
  align-self: end;
  margin-top: 4px;
}

.interiors-section {
  background:
    radial-gradient(circle at 84% 4%, rgba(138, 90, 43, .10), transparent 34%),
    linear-gradient(180deg, #f6f8fa 0%, #fff 100%);
}

.interiors-layout {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  gap: clamp(18px, 4vw, 48px);
  align-items: stretch;
}

.interiors-intro {
  border-radius: 22px;
  padding: clamp(26px, 4vw, 46px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.interiors-intro h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 3.6vw, 48px);
  font-weight: 580;
  line-height: 1.08;
}

.interiors-intro p:not(.eyebrow) {
  color: #52616d;
  margin: 0 0 24px;
  font-size: 18px;
}

.interiors-segments {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.interiors-segments article {
  min-height: 136px;
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.interiors-segments span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, #0f1a23, #273846),
    #0f1a23;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .16);
}

.interiors-segments strong {
  font-size: 18px;
  line-height: 1.22;
}

.article-header {
  padding: clamp(66px, 8vw, 108px) 0 clamp(48px, 6vw, 78px);
}

.article-header h1 {
  max-width: 980px;
  font-size: clamp(32px, 4.1vw, 54px) !important;
  font-weight: 560;
  line-height: 1.08;
}

.article-header p {
  max-width: 760px;
  font-size: clamp(16px, 1.25vw, 19px) !important;
  line-height: 1.65;
}

.article-body,
.article-content,
.article-layout {
  font-size: 17px;
  line-height: 1.78;
}

.article-body p,
.article-content p {
  font-size: clamp(16px, 1.05vw, 18px);
  line-height: 1.78;
}

.article-card h2 {
  font-size: clamp(21px, 1.8vw, 27px);
  line-height: 1.2;
}

.admin-login-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 0, rgba(138, 90, 43, .18), transparent 32%),
    radial-gradient(circle at 88% 100%, rgba(18, 31, 43, .15), transparent 36%),
    linear-gradient(135deg, #f7f9fb 0%, #eef3f7 100%);
  color: #101820;
}

.admin-login-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(22px, 5vw, 60px);
}

.admin-login-card {
  width: min(100%, 520px);
  border-radius: 24px;
  padding: clamp(28px, 5vw, 48px);
}

.admin-login-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 36px;
}

.admin-login-brand small {
  border: 1px solid rgba(210, 216, 222, .8);
  border-radius: 999px;
  color: #52616d;
  font-size: 12px;
  font-weight: 720;
  padding: 7px 11px;
}

.admin-login-card h1 {
  margin: 0 0 12px;
  font-size: clamp(32px, 5vw, 46px);
  font-weight: 580;
  line-height: 1.08;
}

.admin-login-card p:not(.eyebrow) {
  color: #53606c;
  margin: 0;
}

.admin-login-form {
  display: grid;
  gap: 14px;
  margin: 28px 0 18px;
}

.admin-login-form label,
.admin-settings-grid label {
  color: #394854;
  font-size: 13px;
  font-weight: 720;
}

.admin-login-form input,
.admin-settings-grid input {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(196, 205, 214, .92);
  border-radius: 12px;
  background: rgba(255, 255, 255, .92);
  color: #101820;
  padding: 11px 13px;
  margin-top: 7px;
}

.admin-login-form .button {
  width: 100%;
  min-height: 52px;
}

.admin-logout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  font-weight: 760;
  padding: 9px 16px;
  margin-top: 20px;
}

.admin-settings {
  border-radius: 20px;
}

.admin-settings-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0;
}

.admin-settings-grid .full {
  grid-column: 1 / -1;
}

.admin-settings-grid .check {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  border: 1px solid rgba(210, 216, 222, .78);
  border-radius: 12px;
  background: #f7f9fb;
  padding: 12px 14px;
}

.admin-settings-grid .check input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  margin: 0;
}

.install-actions--inline {
  gap: 10px;
  margin-top: 14px;
}

@media (max-width: 900px) {
  .service-system-grid,
  .seo-intent-grid,
  .service-proof-grid,
  .interiors-layout {
    grid-template-columns: 1fr;
  }

  .interiors-segments {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .service-system-card {
    min-height: 0;
    border-radius: 16px;
    padding: 22px;
  }

  .seo-intent-card {
    min-height: 0;
  }

  .interiors-intro {
    border-radius: 18px;
  }

  .interiors-segments {
    grid-template-columns: 1fr;
  }

  .interiors-segments article {
    min-height: 112px;
  }

  .article-header h1 {
    font-size: clamp(30px, 9vw, 42px) !important;
  }

  .admin-settings-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .reference-hero__copy {
    max-width: 100%;
    overflow: visible;
  }

  .trusted-row {
    overflow: visible;
  }

  .trusted-row > span,
  .proof-note {
    display: block;
    max-width: min(100%, 21rem);
    font-size: 11px;
    line-height: 1.35;
  }

  .logo-cloud--compact {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
    overflow: visible;
    padding-bottom: 0;
  }

  .logo-cloud--compact .logo-word {
    justify-content: start;
    min-width: 0;
    white-space: normal;
  }
}

[dir="rtl"] body,
[dir="rtl"] .nav-dropdown,
[dir="rtl"] .reference-hero__copy,
[dir="rtl"] .reference-heading,
[dir="rtl"] .section-heading,
[dir="rtl"] .contact-card,
[dir="rtl"] .admin-panel {
  text-align: right;
}

[dir="rtl"] .topline__inner,
[dir="rtl"] .nav-shell,
[dir="rtl"] .reference-actions,
[dir="rtl"] .trusted-row,
[dir="rtl"] .partner-carousel,
[dir="rtl"] .footer-grid {
  direction: rtl;
}

[dir="rtl"] .nav-dropdown {
  left: auto;
  right: 0;
}

[dir="rtl"] .check-list li,
[dir="rtl"] .service-system-card li,
[dir="rtl"] .reference-pillar li,
[dir="rtl"] .brand-profile-card__body li {
  padding-left: 0;
  padding-right: 24px;
}

[dir="rtl"] .brand-profile-card__body li::before {
  left: auto;
  right: 0;
}

.reference-hero__media img {
  object-position: center center;
}

.reference-hero__overlay {
  background:
    linear-gradient(90deg, rgba(247, 245, 241, .94) 0%, rgba(247, 245, 241, .84) 34%, rgba(247, 245, 241, .32) 58%, rgba(247, 245, 241, .08) 100%),
    linear-gradient(180deg, rgba(247, 245, 241, .20), rgba(20, 24, 28, .12));
}

.reference-hero h1 {
  max-width: min(760px, 62vw);
  font-size: clamp(42px, 3.6vw, 52px);
  hyphens: none;
  overflow-wrap: normal;
  text-wrap: balance;
}

@media (max-width: 760px) {
  .reference-hero__media img {
    object-position: 58% center;
  }

  .reference-hero__overlay {
    background:
      linear-gradient(180deg, rgba(247, 245, 241, .97) 0%, rgba(247, 245, 241, .93) 46%, rgba(247, 245, 241, .60) 74%, rgba(247, 245, 241, .16) 100%),
      linear-gradient(90deg, rgba(247, 245, 241, .96) 0%, rgba(247, 245, 241, .70) 58%, rgba(247, 245, 241, .18) 100%);
  }

  .reference-hero h1 {
    max-width: 100%;
    font-size: clamp(34px, 8.2vw, 44px);
  }
}

/* Production brand and contact additions. */
@media (min-width: 681px) {
  .logo-cloud--brand {
    flex-wrap: wrap;
    gap: clamp(22px, 4.4vw, 72px);
  }
}

.logo-word--puffhouse {
  color: #101820;
  font-size: clamp(21px, 1.7vw, 29px);
  font-weight: 920;
}

.logo-word--berolio {
  color: #5d5c31;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(22px, 1.8vw, 30px);
  font-weight: 700;
  letter-spacing: .02em;
}

.brand-profile-section {
  background: linear-gradient(180deg, #fff, #f6f4ef);
}

.brand-profile-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.brand-profile-card {
  display: grid;
  grid-template-columns: minmax(180px, .7fr) minmax(0, 1.3fr);
  overflow: hidden;
  border: 1px solid rgba(205, 211, 216, .84);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 58px rgba(13, 23, 32, .07);
}

.brand-profile-card__mark {
  display: grid;
  min-height: 286px;
  place-items: center;
  border-right: 1px solid rgba(205, 211, 216, .64);
  background: #101820;
  color: #fff;
  padding: 26px;
}

.brand-profile-card__mark span {
  max-width: 100%;
  overflow-wrap: anywhere;
  font-size: clamp(31px, 4vw, 48px);
  font-weight: 880;
  line-height: 1;
  text-align: center;
}

.brand-profile-card--puffhouse .brand-profile-card__mark {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, 0) 44%),
    #101820;
}

.brand-profile-card--puffhouse .brand-profile-card__mark span {
  letter-spacing: 0;
}

.brand-profile-card--berolio .brand-profile-card__mark {
  background: #eff0e5;
  color: #55532b;
}

.brand-profile-card--berolio .brand-profile-card__mark span {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.brand-profile-card__body {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(24px, 3.3vw, 38px);
}

.brand-profile-card__body h3 {
  margin: 0;
  color: #111820;
  font-size: clamp(29px, 3vw, 42px);
  font-weight: 620;
  line-height: 1.1;
}

.brand-profile-card__body p:not(.eyebrow) {
  margin: 0;
  color: #44515c;
  font-size: 15px;
  line-height: 1.68;
}

.brand-profile-card__body ul {
  display: grid;
  gap: 8px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.brand-profile-card__body li {
  position: relative;
  color: #26323b;
  font-size: 14px;
  font-weight: 720;
  line-height: 1.42;
  padding-left: 18px;
}

.brand-profile-card__body li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #8a5a2b;
}

.contact-quick-actions {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin: 22px 0 8px;
}

.contact-quick-action {
  display: grid;
  min-width: 0;
  min-height: 76px;
  place-items: center;
  gap: 7px;
  border: 1px solid rgba(199, 207, 214, .92);
  border-radius: 8px;
  background: #fff;
  color: #17212b;
  font-size: 12px;
  font-weight: 820;
  line-height: 1.05;
  text-align: center;
  box-shadow: 0 12px 28px rgba(12, 23, 33, .045);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.contact-quick-action:hover,
.contact-quick-action:focus-visible {
  border-color: rgba(138, 90, 43, .42);
  box-shadow: 0 16px 34px rgba(12, 23, 33, .075);
  transform: translateY(-2px);
}

.contact-quick-action svg {
  width: 22px;
  height: 22px;
  color: #8a5a2b;
}

.contact-quick-action span {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mobile-call-shortcut {
  display: none;
}

@media (max-width: 1060px) {
  body.nav-open {
    overflow-y: auto;
  }

  .nav-shell.is-open .site-nav {
    max-height: calc(100dvh - 88px - env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior-y: auto;
    touch-action: pan-y;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 960px) {
  .brand-profile-grid,
  .brand-profile-card {
    grid-template-columns: 1fr;
  }

  .brand-profile-card__mark {
    min-height: 156px;
    border-right: 0;
    border-bottom: 1px solid rgba(205, 211, 216, .64);
  }
}

@media (max-width: 820px) {
  .mobile-call-shortcut {
    position: fixed;
    right: 14px;
    bottom: calc(var(--mobile-dock-height) + 22px + env(safe-area-inset-bottom));
    z-index: 83;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
    border: 1px solid rgba(16, 24, 32, .14);
    border-radius: 999px;
    background: #101820;
    color: #fff;
    box-shadow: 0 16px 38px rgba(7, 16, 21, .22);
    font-size: 13px;
    font-weight: 820;
    padding: 10px 14px;
    transition: transform .2s ease, opacity .2s ease;
  }

  .mobile-call-shortcut svg {
    width: 18px;
    height: 18px;
    color: #d8b876;
  }

  body.nav-open .mobile-call-shortcut,
  body.has-cookie-consent-open .mobile-call-shortcut {
    opacity: 0;
    pointer-events: none;
    transform: translateY(16px);
  }

  .contact-quick-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-quick-action {
    min-height: 58px;
    grid-template-columns: auto auto;
    justify-content: center;
    border-radius: 14px;
    font-size: 13px;
  }

  .contact-quick-action:first-child {
    grid-column: 1 / -1;
    min-height: 62px;
    background: #101820;
    color: #fff;
  }

  .contact-quick-action:first-child svg {
    color: #d8b876;
  }
}

@media (max-width: 430px) {
  .brand-profile-card__body {
    padding: 22px;
  }

  .brand-profile-card__body h3 {
    font-size: 30px;
  }
}

/* Mobile header fix: keep language switching visible outside the menu. */
@media (max-width: 1060px) {
  .nav-shell {
    justify-content: flex-start;
    gap: 10px;
  }

  .brand {
    min-width: 0;
    flex: 1 1 auto;
  }

  .brand__word {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .language-switcher,
  .nav-shell.is-open .language-switcher {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    z-index: 89;
    display: flex !important;
    order: 2;
    flex: 0 0 auto;
    width: auto !important;
    margin-left: auto;
  }

  .nav-toggle {
    order: 3;
    flex: 0 0 auto;
  }

  .language-switcher select,
  .nav-shell.is-open .language-switcher select {
    width: 72px !important;
    min-width: 72px !important;
    min-height: 44px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .94);
    font-size: 12px;
    font-weight: 820;
    padding: 9px 28px 9px 12px;
    box-shadow: 0 10px 26px rgba(7, 16, 21, .08);
  }

  .language-switcher::after {
    right: 12px;
  }
}

@media (max-width: 380px) {
  .nav-shell {
    gap: 8px;
  }

  .language-switcher select,
  .nav-shell.is-open .language-switcher select {
    width: 64px !important;
    min-width: 64px !important;
    padding-left: 10px;
  }
}

.newsletter-section--page {
  padding-top: clamp(38px, 6vw, 72px);
}

.newsletter-section--page .newsletter-brief {
  box-shadow: 0 24px 70px rgba(17, 24, 32, .08);
}

.newsletter-confirmation {
  padding-top: clamp(38px, 6vw, 72px);
}

.newsletter-confirmation__panel {
  background: #fff;
  border: 1px solid rgba(32, 39, 47, .12);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(17, 24, 32, .08);
  padding: clamp(28px, 5vw, 52px);
}

.newsletter-confirmation__panel h2 {
  margin: 8px 0 14px;
  font-size: clamp(30px, 4vw, 48px);
  letter-spacing: 0;
}

.newsletter-confirmation__panel p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.7;
  max-width: 760px;
}

.newsletter-confirmation__panel ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.newsletter-confirmation__panel li {
  position: relative;
  padding-left: 28px;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.55;
}

.newsletter-confirmation__panel li::before {
  content: "";
  position: absolute;
  top: .65em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #d8b876;
  box-shadow: 0 0 0 5px rgba(216, 184, 118, .16);
}

.newsletter-confirmation__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.site-footer {
  overflow: clip;
}

.footer-grid {
  grid-template-columns: minmax(240px, 1.35fr) repeat(3, minmax(138px, .85fr)) minmax(170px, .95fr) minmax(230px, 1.15fr);
  align-items: start;
  gap: clamp(22px, 2.8vw, 44px);
}

.footer-grid > * {
  min-width: 0;
}

.site-footer p,
.footer-links a,
.legal-row span {
  overflow-wrap: anywhere;
}

.footer-links a {
  max-width: 100%;
}

.legal-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 12px 18px;
  align-items: center;
}

.legal-row span:last-child {
  justify-self: end;
  text-align: right;
}

@media (max-width: 1180px) {
  .footer-grid {
    grid-template-columns: minmax(220px, 1.25fr) repeat(2, minmax(150px, 1fr));
  }

  .legal-row {
    grid-template-columns: 1fr;
  }

  .legal-row span:last-child {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 720px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid > div:first-child,
  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-confirmation__actions .button {
    width: 100%;
  }
}
