:root {
  --neo-navy: #071B33;
  --neo-blue: #0B4D8C;
  --neo-blue-light: #176FB2;
  --neo-green: #008C72;
  --neo-green-light: #18AA8A;
  --neo-ink: #071126;
  --neo-muted: #596579;
  --neo-bg: #FFFFFF;
  --neo-soft: #F4F8F7;
  --neo-line: #E2E9E7;
  --neo-radius: 22px;
  --neo-max: 1200px;
  --neo-shadow: 0 22px 70px rgba(7, 27, 51, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--neo-ink);
  background: var(--neo-bg);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
body.neo-menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: 0; color: var(--neo-ink); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); max-width: 880px; margin-bottom: 1.5rem; }
h3 { font-size: 1.15rem; margin-bottom: .7rem; }
blockquote {
  margin: 1rem 0;
  padding: 1rem 1.2rem;
  border-left: 4px solid var(--neo-green);
  background: #fff;
  border-radius: 0 12px 12px 0;
  color: var(--neo-navy);
}

.neo-skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 50;
  padding: .7rem 1rem;
  border-radius: 8px;
  background: var(--neo-navy);
  color: #fff;
  transform: translateY(-160%);
}
.neo-skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--neo-green-light); outline-offset: 4px; }

.neo-container {
  width: min(100% - 40px, var(--neo-max));
  margin: 0 auto;
}
.neo-narrow { max-width: 830px; }
.neo-section { padding: 76px 0; }
.neo-soft-band { background: var(--neo-soft); }
.neo-subtitle {
  color: var(--neo-blue);
  font-size: 1.25rem;
  font-weight: 700;
}
.neo-statement {
  color: var(--neo-navy);
  font-size: 1.25rem;
  font-weight: 800;
}
.neo-section-conclusion {
  margin-top: 2rem;
  color: var(--neo-muted);
  font-size: 1.15rem;
}

.neo-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.1rem;
  border: 1px solid var(--neo-navy);
  border-radius: 8px;
  background: var(--neo-navy);
  color: #fff;
  font-weight: 800;
  line-height: 1.2;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.neo-button:hover { transform: translateY(-1px); background: var(--neo-blue); border-color: var(--neo-blue); }
.neo-button-secondary { background: #fff; color: var(--neo-navy); border-color: var(--neo-line); }
.neo-button-secondary:hover { color: #fff; }

.neo-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(226, 233, 231, .78);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
}
.neo-header-inner {
  width: min(100% - 32px, var(--neo-max));
  min-height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(130px, 1fr) auto auto auto;
  align-items: center;
  gap: 22px;
}
.neo-logo { display: inline-flex; align-items: center; gap: .65rem; font-weight: 900; color: var(--neo-navy); }
.neo-logo-mark {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--neo-navy), var(--neo-green));
  color: #fff;
}
.neo-logo-text { letter-spacing: 0; }
.neo-header-signature { margin: 0; color: var(--neo-muted); font-size: .86rem; white-space: nowrap; }
.neo-nav { display: flex; gap: 1.2rem; align-items: center; justify-content: flex-end; color: var(--neo-muted); font-weight: 750; }
.neo-nav a:hover, .neo-mobile-menu a:hover { color: var(--neo-blue); }
.neo-nav-cta {
  padding: .6rem .9rem;
  border-radius: 8px;
  background: var(--neo-green);
  color: #fff;
  font-weight: 800;
}
.neo-burger {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--neo-line);
  border-radius: 8px;
  background: #fff;
}
.neo-burger span { display: block; width: 18px; height: 2px; margin: 5px auto; background: var(--neo-navy); }
.neo-mobile-menu {
  position: fixed;
  inset: 76px 0 0;
  padding: 26px;
  background: rgba(255,255,255,.98);
}
.neo-mobile-menu nav { display: grid; gap: 18px; font-size: 1.25rem; font-weight: 800; }

.neo-hero { padding: 90px 0 82px; overflow: hidden; }
.neo-hero-grid, .neo-split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .98fr);
  gap: clamp(36px, 5vw, 66px);
  align-items: center;
}
.neo-hero-kicker {
  margin-bottom: 1.1rem;
  color: var(--neo-green);
  font-size: .83rem;
  font-weight: 900;
  letter-spacing: .08em;
}
.neo-hero-title { max-width: 760px; font-size: clamp(2.55rem, 5vw, 4rem); line-height: 1.04; }
.neo-hero-lead { max-width: 720px; margin-top: 1.45rem; color: var(--neo-muted); font-size: clamp(1.18rem, 1.7vw, 1.42rem); }
.neo-hero-signature { color: var(--neo-blue); font-size: 1.3rem; font-weight: 900; }
.neo-hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin: 2rem 0 1.4rem; }
.neo-hero-proof {
  display: inline-flex;
  max-width: 100%;
  padding-top: 1rem;
  border-top: 1px solid var(--neo-line);
  color: var(--neo-muted);
  font-size: .95rem;
}
.neo-page-hero { background: linear-gradient(180deg, var(--neo-soft), #fff); }
.neo-page-hero .neo-container { max-width: 980px; }

.neo-image-frame {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  margin: 0;
  border: 1px solid var(--neo-line);
  border-radius: var(--neo-radius);
  background: linear-gradient(135deg, #fff, var(--neo-soft));
  box-shadow: var(--neo-shadow);
}
.neo-image-frame::after {
  content: attr(data-missing-image);
  position: absolute;
  inset: 18px;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(7, 27, 51, .24);
  border-radius: 16px;
  color: var(--neo-muted);
  font-size: .9rem;
  text-align: center;
  opacity: 0;
}
.neo-image-frame[data-missing-image]::after { opacity: 1; }
.neo-image-frame img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover!important;
  display: block;
}

.neo-hero-media .neo-image-frame {
  min-height: clamp(520px, 52vw, 660px);
}

.neo-pillars-grid, .neo-before-after-grid, .neo-final-cta-grid, .neo-dna-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.neo-pillar-card, .neo-solution-case, .neo-final-option, .neo-assistant-card {
  border: 1px solid var(--neo-line);
  border-radius: 8px;
  background: #fff;
  padding: 24px;
}
.neo-pillar-label {
  margin-bottom: .9rem;
  color: var(--neo-green);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
}
.neo-pillar-title { min-height: 130px; }
.neo-pillar-link { color: var(--neo-blue); font-weight: 900; }
.neo-pillar-link::after { content: " →"; }

.neo-real-case {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, .52fr);
  gap: clamp(20px, 4vw, 54px);
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--neo-line);
}
.neo-real-case:first-of-type { border-top: 1px solid var(--neo-line); }
.neo-real-case-question { margin: 0; color: var(--neo-navy); font-size: clamp(1.16rem, 2vw, 1.55rem); font-weight: 800; line-height: 1.25; }
.neo-real-case-answer { margin: 0; color: var(--neo-green); font-size: 1.05rem; font-weight: 900; }
.neo-real-case-answer::before { content: "→ "; color: var(--neo-blue); }

.neo-product-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 1.5rem 0;
}
.neo-event {
  background: #fff;
  color: rgba(255,255,255,.82);
}
.neo-event .neo-container,
.neo-brand-twin .neo-container {
  width: min(100% - 40px, 1440px);
}
.neo-event h2, .neo-event h3 { color: #fff; }
.neo-event h2,
.neo-brand-twin h2 {
  font-size: clamp(2.2rem, 4.4vw, 3.5rem);
  line-height: 1.02;
}
.neo-event-composition {
  display: grid;
  width: 100%;
  max-width: 100%;
  grid-template-columns: minmax(0, .42fr) minmax(0, .58fr);
  grid-template-areas:
    "content media"
    "products media"
    "bottom bottom";
  gap: clamp(24px, 3.5vw, 44px);
  align-items: stretch;
  padding: clamp(32px, 5vw, 68px);
  border-radius: 24px;
  background: var(--neo-navy);
  overflow: hidden;
}
.neo-event-content { grid-area: content; min-width: 0; max-width: 60ch; }
.neo-event-products-panel { grid-area: products; min-width: 0; }
.neo-event-media { grid-area: media; min-width: 0; }
.neo-event .neo-image-frame {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border-color: rgba(255,255,255,.16);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(24,170,138,.12));
  box-shadow: none;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.neo-event .neo-image-frame::after {
  border-color: rgba(255,255,255,.26);
  color: rgba(255,255,255,.68);
}
.neo-event .neo-image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
}
.neo-event-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1.1rem;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  background: rgba(255,255,255,.15);
  overflow: hidden;
}
.neo-event-products .neo-product-mini {
  min-width: 0;
  min-height: 132px;
  padding: 15px;
  border: 0;
  border-radius: 0;
  background: rgba(255,255,255,.06);
  color: #fff;
}
.neo-event-products svg,
.neo-brand-steps svg,
.neo-brand-benefits svg {
  width: 30px;
  height: 30px;
  color: var(--neo-green-light);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.neo-event-products .neo-product-mini strong { font-size: .95rem; }
.neo-event-products .neo-product-mini span { color: rgba(255,255,255,.72); }
.neo-event .neo-button {
  border-color: #fff;
  background: #fff;
  color: var(--neo-navy);
}
.neo-event .neo-button:hover {
  border-color: var(--neo-green-light);
  background: var(--neo-green-light);
  color: #fff;
}
.neo-event-bottom {
  grid-area: bottom;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(240px, .55fr) auto;
  gap: clamp(18px, 3vw, 36px);
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.18);
  min-width: 0;
}
.neo-large-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.neo-product-mini {
  display: grid;
  gap: .35rem;
  padding: 16px;
  border: 1px solid var(--neo-line);
  border-radius: 8px;
  background: #fff;
}
.neo-product-mini span { color: var(--neo-muted); }
.neo-event-signature {
  margin: 0;
  color: #fff;
  font-size: clamp(1.35rem, 2.7vw, 2.05rem);
  font-weight: 900;
  line-height: 1.15;
}

.neo-text-link {
  display: inline-flex;
  margin: .25rem 0 1rem;
  color: var(--neo-green-light);
  font-weight: 900;
}

.neo-brand-twin {
  background: var(--neo-soft);
}
.neo-brand-composition {
  display: grid;
  width: 100%;
  max-width: 100%;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.35fr) minmax(260px, .65fr);
  gap: clamp(22px, 3vw, 38px);
  align-items: stretch;
  grid-template-areas:
    "content media human"
    "concept media human"
    "steps steps steps"
    "growth benefits benefits"
    "final final final";
  padding: clamp(30px, 5vw, 64px);
  border: 1px solid #DDE8E4;
  border-radius: 24px;
  background: linear-gradient(180deg, #fff, #F4F8F7);
  overflow: hidden;
}
.neo-brand-twin-content { grid-area: content; min-width: 0; }
.neo-brand-twin-media { grid-area: media; min-width: 0; }
.neo-brand-twin-media .neo-image-frame {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border-radius: 18px;
  border-color: #DDE8E4;
  background: linear-gradient(135deg, #fff, var(--neo-soft));
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.neo-brand-twin-media .neo-image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
}
.neo-brand-concept {
  grid-area: concept;
  padding-top: 22px;
  border-top: 1px solid var(--neo-line);
  color: var(--neo-muted);
}
.neo-brand-steps {
  grid-area: steps;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--neo-line);
  background: transparent;
}
.neo-brand-steps article {
  min-width: 0;
  padding: 20px 18px 0;
  border-right: 1px solid var(--neo-line);
  background: transparent;
}
.neo-brand-steps article:last-child { border-right: 0; }
.neo-brand-steps h3 {
  color: var(--neo-navy);
  font-size: .92rem;
}
.neo-brand-steps article:not(:last-child) h3::after {
  content: " →";
  color: var(--neo-green);
}
.neo-brand-steps p {
  margin: 0;
  color: var(--neo-muted);
  font-size: .95rem;
}
.neo-brand-growth {
  grid-area: growth;
  padding: 24px 0;
  border-top: 1px solid var(--neo-line);
  color: var(--neo-muted);
}
.neo-brand-growth strong {
  display: block;
  margin-top: .8rem;
  color: var(--neo-navy);
  font-size: clamp(1.3rem, 2vw, 1.85rem);
  line-height: 1.15;
}
.neo-brand-benefits {
  grid-area: benefits;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 24px 0;
  border-top: 1px solid var(--neo-line);
}
.neo-brand-benefits p {
  margin: 0;
  min-width: 0;
}
.neo-brand-benefits strong,
.neo-brand-benefits span {
  display: block;
}
.neo-brand-benefits strong {
  color: var(--neo-navy);
  line-height: 1.2;
}
.neo-brand-benefits span {
  margin-top: .3rem;
  color: var(--neo-muted);
}
.neo-brand-human {
  grid-area: human;
  padding: 24px;
  border: 1px solid rgba(0, 140, 114, .26);
  border-radius: 16px;
  background: rgba(255,255,255,.58);
}
.neo-brand-human h3 {
  color: var(--neo-navy);
}
.neo-brand-human ul {
  display: grid;
  gap: .85rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}
.neo-brand-human li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: .7rem;
  color: var(--neo-muted);
}
.neo-brand-human li svg {
  width: 22px;
  height: 22px;
  color: var(--neo-green);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.neo-brand-final {
  grid-area: final;
  padding-top: 24px;
  border-top: 1px solid var(--neo-line);
}
.neo-brand-formula {
  margin: 0 0 1.4rem;
  color: var(--neo-navy);
  font-size: clamp(1.5rem, 3vw, 2.65rem);
  font-weight: 900;
  line-height: 1.1;
}
.neo-brand-final .neo-button {
  border-color: var(--neo-green);
  background: var(--neo-green);
  color: #fff;
}
.neo-brand-final .neo-button:hover {
  border-color: var(--neo-navy);
  background: var(--neo-navy);
}

.neo-assistants .neo-split {
  grid-template-columns: minmax(360px, .85fr) minmax(0, 1.05fr);
}
.neo-assistant-media { order: -1; }
.neo-assistant-media .neo-image-frame {
  height: 100%;
  min-height: 560px;
}
.neo-assistant-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 1.5rem 0;
}
.neo-assistant-card h3 { font-size: .92rem; color: var(--neo-blue); }
.neo-ai-summary-card {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: .35rem;
  min-width: 180px;
  padding: 18px;
  border: 1px solid rgba(226, 233, 231, .9);
  border-radius: 8px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 18px 44px rgba(7, 27, 51, .14);
}
.neo-ai-summary-card strong { color: var(--neo-navy); }
.neo-ai-summary-card span { color: var(--neo-muted); }

.neo-section-kicker {
  margin-bottom: 1rem;
  color: var(--neo-green);
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.neo-augmented-office {
  background: linear-gradient(180deg, #fff, var(--neo-soft));
}
.neo-office-intro {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 980px;
  color: var(--neo-muted);
  font-size: 1.15rem;
}
.neo-office-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 2.4rem 0;
}
.neo-office-column {
  padding: 28px;
  border: 1px solid var(--neo-line);
  border-radius: 8px;
  background: #fff;
}
.neo-office-column h3 { color: var(--neo-blue); }
.neo-office-human h3 { color: var(--neo-green); }
.neo-office-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.neo-office-column li {
  display: flex;
  gap: .7rem;
  padding: .72rem 0;
  border-bottom: 1px solid var(--neo-line);
  color: var(--neo-navy);
  font-weight: 750;
}
.neo-office-column li::before {
  content: "";
  flex: 0 0 8px;
  width: 8px;
  height: 8px;
  margin-top: .6rem;
  border-radius: 50%;
  background: var(--neo-green);
}
.neo-office-statement {
  margin: 2rem 0 1.4rem;
  color: var(--neo-navy);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.08;
}
.neo-office-conclusion {
  max-width: 760px;
  color: var(--neo-muted);
  font-size: 1.16rem;
}

.neo-twin { background: var(--neo-soft); text-align: center; }
.neo-twin .neo-container { max-width: 980px; }
.neo-twin h2 { margin-left: auto; margin-right: auto; }
.neo-twin-assets, .neo-solution-tags, .neo-parfect-capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 1.8rem 0;
}
.neo-twin-assets { justify-content: center; }
.neo-chip, .neo-solution-tags span, .neo-parfect-capabilities span {
  border: 1px solid var(--neo-line);
  border-radius: 999px;
  background: #fff;
  padding: .5rem .78rem;
  color: var(--neo-navy);
  font-weight: 800;
}
.neo-twin-lines {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  margin: 1.2rem auto;
  max-width: 760px;
}
.neo-twin-lines p {
  margin: 0;
  color: var(--neo-blue);
  font-weight: 900;
}
.neo-twin-statement { margin-top: 1.8rem; color: var(--neo-navy); font-size: clamp(2rem, 5vw, 4rem); font-weight: 900; line-height: 1.08; }

.neo-gamification {
  background: var(--neo-navy);
  color: rgba(255,255,255,.82);
}
.neo-gamification h2,
.neo-gamification h3 {
  color: #fff;
}
.neo-gamification .neo-subtitle {
  max-width: 760px;
  color: var(--neo-green-light);
}
.neo-gamification-intro {
  max-width: 720px;
  margin-top: 1.4rem;
  font-size: 1.12rem;
}
.neo-gamification-examples {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 1.8rem 0;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.16);
}
.neo-gamification-examples article {
  min-width: 0;
  padding: 18px;
  background: var(--neo-navy);
}
.neo-gamification-examples p {
  margin-bottom: .8rem;
  color: var(--neo-green-light);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
}
.neo-gamification-examples h3 {
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.18;
}
.neo-gamification-examples span {
  color: rgba(255,255,255,.72);
}
.neo-gamification-coach {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(280px, .58fr);
  gap: 0 36px;
  align-items: start;
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.18);
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.neo-gamification-coach h3,
.neo-gamification-coach p:not(.neo-gamification-statement) {
  grid-column: 1;
}
.neo-gamification-statement {
  grid-column: 2;
  grid-row: 1 / span 8;
  margin: 0;
  color: #fff;
  font-size: clamp(1.45rem, 3vw, 2.7rem);
  font-weight: 900;
  line-height: 1.12;
}
.neo-saga {
  margin-top: 1.8rem;
  max-width: 1000px;
}
.neo-saga-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 1.4rem 0 1rem;
}
.neo-saga-grid div {
  min-width: 0;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.2);
}
.neo-saga-grid strong {
  display: block;
  color: var(--neo-green-light);
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: .9;
}
.neo-saga-grid div:nth-child(even) strong {
  color: #fff;
}
.neo-saga-grid span {
  display: block;
  margin-top: .8rem;
  color: rgba(255,255,255,.86);
  font-weight: 900;
}

.neo-digital-solutions {
  background: #fff;
}
.neo-solution-case {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(280px, 1fr) auto;
  padding-top: 34px;
}
.neo-solution-case::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 22px;
  width: 46px;
  height: 7px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--neo-line) 0 8px, transparent 8px 12px, var(--neo-line) 12px 20px, transparent 20px 24px, var(--neo-line) 24px 32px);
}
.neo-case-thumb {
  min-height: 300px;
  margin-bottom: 1rem;
  border-radius: 8px;
  box-shadow: none;
  background: #f8fbfa;
}
.neo-case-thumb img {
  object-fit: contain;
  padding: 10px;
}
.neo-solution-before, .neo-solution-after { margin: 0; font-weight: 900; line-height: 1.2; }
.neo-solution-before { color: var(--neo-muted); }
.neo-solution-arrow { margin: .45rem 0; color: var(--neo-green); font-size: 2rem; font-weight: 900; line-height: 1; }
.neo-solution-after { color: var(--neo-navy); font-size: 1.16rem; }
.neo-proof-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  margin-top: .35rem;
}
.neo-proof-flow p {
  margin: 0;
  color: var(--neo-navy);
  font-weight: 900;
  line-height: 1.2;
}
.neo-proof-flow span {
  display: block;
  margin-bottom: .25rem;
  color: var(--neo-muted);
  font-size: .72rem;
  letter-spacing: .08em;
}
.neo-proof-flow strong {
  color: var(--neo-green);
  font-size: 1.7rem;
}

.neo-dna {
  background: var(--neo-navy);
  color: rgba(255,255,255,.82);
}
.neo-dna h2, .neo-dna h3 { color: #fff; }
.neo-dna-statement {
  max-width: 920px;
  margin: 1.5rem 0 2rem;
  color: #fff;
  font-size: clamp(2rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.05;
}
.neo-dna-item {
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.2);
}
.neo-dna-profession {
  margin: -.35rem 0 .9rem;
  color: var(--neo-green-light);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
}

.neo-final-cta { background: linear-gradient(180deg, var(--neo-soft), #fff); }
.neo-final-cta h2 { text-align: center; margin-left: auto; margin-right: auto; }
.neo-final-option h3 { min-height: 58px; }
.neo-centered-signature { margin-top: 2rem; text-align: center; color: var(--neo-blue); font-weight: 900; }

.neo-clean-list {
  margin: 1rem 0 1.5rem;
  padding-left: 1.2rem;
  color: var(--neo-muted);
}
.neo-clean-list li + li { margin-top: .4rem; }

.neo-page-hero-grid,
.neo-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .85fr);
  gap: clamp(32px, 5vw, 68px);
  align-items: center;
}
.neo-page-hero-visual {
  background: linear-gradient(180deg, var(--neo-soft), #fff);
}
.neo-page-visual {
  min-height: clamp(320px, 42vw, 560px);
}
.neo-page-visual img {
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}
.neo-experiences-hero,
.neo-pillar-hero {
  padding: clamp(70px, 7vw, 90px) 0;
}
.neo-experiences-hero .neo-page-hero-grid,
.neo-pillar-hero .neo-page-hero-grid {
  width: min(100% - 48px, 1360px);
  max-width: none;
  grid-template-columns: minmax(360px, .42fr) minmax(0, .58fr);
  gap: clamp(28px, 3.4vw, 48px);
  align-items: center;
}
.neo-experiences-hero .neo-page-hero-grid > div,
.neo-pillar-hero .neo-page-hero-grid > div {
  max-width: 560px;
}
.neo-experiences-hero .neo-hero-title,
.neo-pillar-hero .neo-hero-title {
  max-width: 520px;
  font-size: clamp(3rem, 4.3vw, 5.2rem);
  line-height: 1;
}
.neo-experiences-hero .neo-hero-lead,
.neo-pillar-hero .neo-hero-lead {
  max-width: 560px;
  line-height: 1.5;
}
.neo-experiences-hero .neo-hero-actions,
.neo-pillar-hero .neo-hero-actions {
  flex-wrap: nowrap;
  gap: 14px;
}
.neo-pillar-hero .neo-statement {
  max-width: 560px;
}
.neo-experiences-hero .neo-page-visual,
.neo-pillar-hero .neo-page-visual {
  min-height: clamp(620px, 50vw, 700px);
  border-radius: 28px;
  box-shadow: 0 26px 72px rgba(7, 27, 51, .13);
}
.neo-experiences-hero .neo-page-visual img {
  aspect-ratio: 16 / 10;
  object-position: 50% 50%;
}
.neo-ai-hero .neo-page-visual,
.neo-solutions-hero .neo-page-visual {
  background: #F8FBFA;
}
.neo-ai-hero .neo-page-visual img,
.neo-solutions-hero .neo-page-visual img {
  aspect-ratio: 3 / 2;
  object-fit: contain;
  object-position: 50% 50%;
}
.neo-proof-list {
  display: grid;
  gap: .65rem;
  padding: 26px;
  border: 1px solid var(--neo-line);
  border-radius: 8px;
  background: #fff;
}
.neo-proof-list p {
  margin: 0;
  padding-bottom: .65rem;
  border-bottom: 1px solid var(--neo-line);
  color: var(--neo-muted);
  font-weight: 750;
}
.neo-proof-list strong {
  color: var(--neo-navy);
  font-size: 1.25rem;
  line-height: 1.18;
}
.neo-proof-band {
  background: var(--neo-navy);
  color: rgba(255,255,255,.82);
}
.neo-proof-band h2 { color: #fff; }
.neo-proof-band .neo-big-statement { color: #fff; }
.neo-big-statement {
  color: var(--neo-navy);
  font-size: clamp(1.6rem, 3.4vw, 3rem);
  font-weight: 900;
  line-height: 1.08;
}
.neo-feature-grid,
.neo-scenario-grid,
.neo-proof-grid,
.neo-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.neo-feature-grid article,
.neo-scenario-grid article,
.neo-proof-grid article {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--neo-line);
  border-radius: 8px;
  background: #fff;
}
.neo-feature-grid h3,
.neo-scenario-grid h3,
.neo-proof-grid h3 {
  color: var(--neo-blue);
  font-size: 1rem;
}
.neo-proof-grid strong {
  display: block;
  margin-top: 1rem;
  color: var(--neo-green);
  font-weight: 900;
}
.neo-experience-catalog {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 2rem;
}
.neo-experience-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #DDE8E4;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(7, 27, 51, .07);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.neo-experience-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 140, 114, .45);
  box-shadow: 0 18px 40px rgba(7, 27, 51, .09);
}
.neo-experience-card-featured {
  border-color: rgba(0, 140, 114, .48);
  background: linear-gradient(180deg, rgba(244, 248, 247, .75), #fff 42%);
}
.neo-experience-card-media {
  display: grid;
  aspect-ratio: 16 / 9;
  min-height: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.neo-experience-card-media::after {
  inset: 14px;
  border-radius: 12px;
}
.neo-experience-card-media img {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.neo-experience-card-body {
  display: grid;
  min-height: 214px;
  align-content: start;
  padding: 22px;
}
.neo-experience-kicker,
.neo-experience-modal-kicker {
  margin: 0 0 .55rem;
  color: var(--neo-green);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .08em;
}
.neo-experience-card h3 {
  color: var(--neo-blue);
  font-size: 1.08rem;
}
.neo-experience-card p {
  color: var(--neo-muted);
}
.neo-experience-card-button {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  align-self: end;
  gap: .5rem;
  margin-top: auto;
  padding: .15rem 0;
  border: 0;
  background: transparent;
  color: var(--neo-navy);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}
.neo-experience-card-button svg {
  width: 18px;
  height: 18px;
  color: var(--neo-green);
  fill: none;
  stroke: currentColor;
  stroke-linejoin: round;
  stroke-width: 1.9;
}
.neo-experience-modal[hidden] { display: none; }
body.neo-modal-open { overflow: hidden; }
.neo-experience-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
}
.neo-experience-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 17, 38, .68);
  backdrop-filter: blur(8px);
}
.neo-experience-modal-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 1200px);
  max-height: 90vh;
  overflow: auto;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 28px 78px rgba(7, 17, 38, .26);
}
.neo-experience-modal-header,
.neo-experience-modal-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 30px;
}
.neo-experience-modal-header {
  border-bottom: 1px solid var(--neo-line);
}
.neo-experience-modal-header h3 {
  color: var(--neo-blue);
  font-size: clamp(1.55rem, 2.8vw, 2.45rem);
}
.neo-experience-modal-header p:last-child,
.neo-experience-modal-footer p {
  margin: .55rem 0 0;
  color: var(--neo-muted);
}
.neo-experience-modal-close {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--neo-line);
  border-radius: 50%;
  background: #fff;
  color: var(--neo-navy);
  cursor: pointer;
  font-size: 1.45rem;
  line-height: 1;
}
.neo-experience-modal-body {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
}
.neo-experience-modal-media {
  position: sticky;
  top: 0;
  align-self: start;
  min-height: 100%;
  padding: 30px;
  background: var(--neo-soft);
}
.neo-experience-modal-media video,
.neo-experience-modal-media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--neo-line);
  border-radius: 16px;
  background: #fff;
  object-fit: cover;
  box-shadow: 0 14px 34px rgba(7, 27, 51, .08);
}
.neo-experience-modal-fallback .neo-image-frame {
  aspect-ratio: 16 / 9;
  min-height: 0;
  box-shadow: 0 14px 34px rgba(7, 27, 51, .08);
}
.neo-experience-modal-fallback {
  position: relative;
}
.neo-experience-modal-fallback span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  padding: .45rem .65rem;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
  background: rgba(7, 27, 51, .72);
  color: #fff;
  font-size: .82rem;
  font-weight: 800;
}
.neo-experience-modal-content {
  display: grid;
  gap: 20px;
  padding: 30px;
}
.neo-experience-modal-section {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--neo-line);
}
.neo-experience-modal-section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.neo-experience-modal-label {
  margin: 0 0 .45rem;
  color: var(--neo-green);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
}
.neo-experience-modal-list {
  display: grid;
  gap: .55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.neo-experience-modal-list li {
  position: relative;
  padding-left: 1.45rem;
  color: var(--neo-muted);
}
.neo-experience-modal-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .42rem;
  width: .62rem;
  height: .34rem;
  border-bottom: 2px solid var(--neo-green);
  border-left: 2px solid var(--neo-green);
  transform: rotate(-45deg);
}
.neo-experience-modal-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.neo-experience-modal-chips span {
  padding: .45rem .65rem;
  border: 1px solid var(--neo-line);
  border-radius: 999px;
  background: var(--neo-soft);
  color: var(--neo-navy);
  font-size: .86rem;
  font-weight: 750;
}
.neo-experience-modal-footer {
  border-top: 1px solid var(--neo-line);
  background: linear-gradient(180deg, #fff, var(--neo-soft));
}
.neo-experience-modal-footer strong {
  display: block;
  color: var(--neo-navy);
  font-size: 1.15rem;
}
.neo-methodology {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 2rem 0;
}
.neo-methodology article {
  min-width: 0;
  padding: 0 18px 0 0;
  border-top: 2px solid var(--neo-line);
}
.neo-methodology article + article {
  padding-left: 18px;
}
.neo-methodology span {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-top: -24px;
  border: 2px solid var(--neo-line);
  border-radius: 50%;
  background: #fff;
  color: var(--neo-green);
  font-weight: 900;
}
.neo-methodology h3 {
  margin-top: 1rem;
  color: var(--neo-navy);
  font-size: 1rem;
}
.neo-methodology p {
  color: var(--neo-muted);
  font-size: .96rem;
}
.neo-faq details {
  border-top: 1px solid var(--neo-line);
  padding: 1.1rem 0;
}
.neo-faq details:last-child {
  border-bottom: 1px solid var(--neo-line);
}
.neo-faq summary {
  cursor: pointer;
  color: var(--neo-navy);
  font-weight: 900;
}
.neo-faq details p {
  max-width: 780px;
  margin-top: .8rem;
  color: var(--neo-muted);
}
.neo-legal-hero {
  padding: 64px 0 52px;
}
.neo-legal-container {
  max-width: 900px;
}
.neo-legal-section {
  padding: 34px 0;
  border-top: 1px solid var(--neo-line);
}
.neo-legal-section:first-child {
  padding-top: 0;
  border-top: 0;
}
.neo-legal-section h2 {
  margin-bottom: 1rem;
  color: var(--neo-navy);
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
}
.neo-legal-section h3 {
  margin-top: 1.35rem;
  color: var(--neo-blue);
  font-size: 1rem;
}
.neo-legal-section p {
  color: var(--neo-muted);
}
.neo-legal-section p strong {
  color: var(--neo-navy);
}
.neo-legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 1.4rem;
}
.neo-legal-grid div {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--neo-line);
  border-radius: 8px;
  background: #fff;
}
.neo-legal-grid span {
  display: block;
  margin-bottom: .35rem;
  color: var(--neo-green);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.neo-legal-grid strong {
  color: var(--neo-navy);
  font-weight: 850;
}
.neo-legal-list {
  display: grid;
  gap: .45rem;
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  color: var(--neo-muted);
}
.neo-legal-list li::marker {
  color: var(--neo-green);
}
.neo-related {
  background: var(--neo-soft);
}
.neo-link-grid a {
  padding: 18px;
  border: 1px solid var(--neo-line);
  border-radius: 8px;
  background: #fff;
  color: var(--neo-blue);
  font-weight: 900;
}
.neo-link-grid a::after {
  content: " →";
}

/* Borne tablette : extensions légères des composants éditoriaux existants. */
.neo-kiosk-hero .neo-page-hero-grid { max-width: 1200px; }
.neo-kiosk-hero .neo-hero-title { font-size: clamp(3rem, 5.5vw, 5.8rem); }
.neo-kiosk-benefits { color: var(--neo-green); font-weight: 900; }
.neo-kiosk-product-image { position: relative; }
.neo-kiosk-product-image img { object-position: center; }
.neo-kiosk-product-image figcaption { padding: 12px 16px; color: var(--neo-muted); font-size: .86rem; }
.neo-kiosk-journey { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 1.5rem; }
.neo-kiosk-journey span { display: inline-flex; align-items: center; color: var(--neo-navy); font-size: .82rem; font-weight: 900; text-transform: uppercase; }
.neo-kiosk-journey span:not(:last-child)::after { content: "→"; margin-left: 8px; color: var(--neo-green); }
.neo-kiosk-media-placeholder { display: grid; min-height: 420px; align-content: center; padding: clamp(28px, 5vw, 54px); border: 1px dashed var(--neo-green); border-radius: var(--neo-radius); background: linear-gradient(145deg, #fff, #eaf4f1); }
.neo-kiosk-media-placeholder strong { color: var(--neo-navy); font-size: clamp(1.7rem, 3vw, 2.7rem); line-height: 1.05; }
.neo-kiosk-media-placeholder p { margin-top: 1rem; color: var(--neo-muted); }
.neo-kiosk-media-placeholder small { margin-top: 2rem; color: var(--neo-muted); }
.neo-kiosk-use-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.neo-kiosk-benefit-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.neo-kiosk-audience { margin-top: 40px; padding: 24px; border-left: 4px solid var(--neo-green); background: var(--neo-soft); }
.neo-kiosk-audience p:last-child { margin-bottom: 0; color: var(--neo-navy); font-weight: 800; }
.neo-kiosk-offer-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.neo-kiosk-offer-grid article, .neo-kiosk-subscription { padding: clamp(24px, 4vw, 38px); border: 1px solid var(--neo-line); border-radius: 18px; background: #fff; }
.neo-kiosk-offer-grid h3, .neo-kiosk-subscription h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); }
.neo-kiosk-offer-grid h4 { margin-bottom: 0; color: var(--neo-navy); }
.neo-kiosk-offer-featured { box-shadow: var(--neo-shadow); }
.neo-price { display: flex; flex-direction: column; margin: 1.2rem 0; color: var(--neo-navy); font-size: clamp(2.7rem, 5vw, 4.6rem); font-weight: 900; line-height: 1; }
.neo-price small { margin-bottom: .45rem; color: var(--neo-green); font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; }
.neo-offer-note { color: var(--neo-muted); font-weight: 800; }
.neo-kiosk-subscription { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 30px; align-items: center; margin-top: 18px; background: var(--neo-soft); }
.neo-price-monthly { min-width: 210px; margin: 0; }
.neo-price-monthly span { font-size: 1.1rem; }
.neo-price-monthly small { margin-top: .8rem; color: var(--neo-muted); letter-spacing: 0; line-height: 1.45; text-transform: none; }
.neo-kiosk-final { text-align: center; }
.neo-kiosk-final .neo-section-kicker { justify-content: center; }
.neo-event-product-link .neo-page-visual { min-height: 460px; }
.neo-event-product-link .neo-page-visual img { object-position: center; }

@media (max-width: 1024px) {
  .neo-kiosk-benefit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .neo-kiosk-use-grid, .neo-kiosk-benefit-grid, .neo-kiosk-offer-grid, .neo-kiosk-subscription { grid-template-columns: 1fr; }
  .neo-kiosk-media-placeholder { min-height: 360px; }
  .neo-kiosk-journey { display: grid; }
  .neo-kiosk-journey span:not(:last-child)::after { content: "↓"; }
  .neo-price-monthly { min-width: 0; }
}
.neo-static-summary {
  position: static;
  max-width: 320px;
  background: #fff;
}

.neo-instakdo-hero .neo-page-visual,
.neo-instakdo-hero .neo-product-screen {
  min-height: clamp(560px, 48vw, 680px);
}
.neo-instakdo-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 1.6rem 0 1.2rem;
}
.neo-instakdo-proof span {
  padding: .42rem .62rem;
  border: 1px solid var(--neo-line);
  border-radius: 999px;
  background: #fff;
  color: var(--neo-navy);
  font-weight: 850;
  line-height: 1.2;
}
.neo-product-screen {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--neo-line);
  border-radius: 28px;
  background: linear-gradient(135deg, #fff, var(--neo-soft));
  box-shadow: var(--neo-shadow);
}
.neo-screen-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 18px;
  border-bottom: 1px solid var(--neo-line);
  background: rgba(255,255,255,.86);
}
.neo-screen-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--neo-line);
}
.neo-screen-topbar span:first-child { background: var(--neo-green-light); }
.neo-screen-topbar strong {
  margin-left: .45rem;
  color: var(--neo-navy);
  font-weight: 900;
}
.neo-screen-shell {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  min-height: calc(100% - 50px);
}
.neo-screen-shell aside {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 20px;
  border-right: 1px solid var(--neo-line);
  background: rgba(244, 248, 247, .72);
}
.neo-screen-shell aside span {
  min-width: 0;
  padding: .62rem .7rem;
  border-radius: 8px;
  color: var(--neo-muted);
  font-size: .9rem;
  font-weight: 850;
}
.neo-screen-shell aside .is-active {
  background: var(--neo-navy);
  color: #fff;
}
.neo-screen-main {
  display: grid;
  align-content: start;
  gap: 18px;
  min-width: 0;
  padding: clamp(20px, 3vw, 34px);
}
.neo-screen-header {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--neo-line);
}
.neo-screen-header p {
  margin: 0 0 .25rem;
  color: var(--neo-green);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.neo-screen-header strong {
  color: var(--neo-navy);
  font-size: clamp(1.55rem, 2.4vw, 2.45rem);
  line-height: 1.05;
}
.neo-screen-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.neo-screen-cards article,
.neo-screen-builder div {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--neo-line);
  border-radius: 8px;
  background: #fff;
}
.neo-screen-cards article {
  min-height: 150px;
}
.neo-screen-cards article.is-selected {
  border-color: rgba(0, 140, 114, .38);
  background: linear-gradient(180deg, rgba(24,170,138,.12), #fff);
}
.neo-screen-cards span,
.neo-final-option > span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--neo-soft);
  color: var(--neo-green);
  font-weight: 900;
}
.neo-screen-cards strong,
.neo-screen-cards small,
.neo-screen-builder span,
.neo-screen-builder strong {
  display: block;
}
.neo-screen-cards strong,
.neo-screen-builder strong {
  color: var(--neo-navy);
  line-height: 1.18;
}
.neo-screen-cards small,
.neo-screen-builder span {
  margin-top: .4rem;
  color: var(--neo-muted);
}
.neo-screen-builder {
  display: grid;
  gap: 12px;
}
.neo-instakdo-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 2rem;
  border: 1px solid var(--neo-line);
  border-radius: 18px;
  background: var(--neo-line);
  overflow: hidden;
}
.neo-instakdo-steps article {
  min-width: 0;
  padding: 24px;
  background: #fff;
}
.neo-instakdo-steps span {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 1.2rem;
  border: 2px solid var(--neo-line);
  border-radius: 50%;
  color: var(--neo-green);
  font-weight: 900;
}
.neo-instakdo-steps h3 {
  color: var(--neo-navy);
  font-size: 1rem;
}
.neo-instakdo-steps p {
  margin: .35rem 0 0;
  color: var(--neo-muted);
  font-weight: 750;
}
.neo-instakdo-rule-flow {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 14px;
  background: rgba(255,255,255,.18);
  overflow: hidden;
}
.neo-instakdo-rule-flow p {
  margin: 0;
  padding: 18px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-weight: 850;
}
.neo-instakdo-rule-flow p + p::before {
  content: "↓";
  display: block;
  margin-bottom: .55rem;
  color: var(--neo-green-light);
  font-size: 1.4rem;
  line-height: 1;
}
.neo-instakdo-chips {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: -26px;
}
.neo-instakdo-chips span {
  padding: .55rem .78rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.86);
  font-weight: 800;
}
.neo-instakdo-terrain {
  background: linear-gradient(180deg, #fff, var(--neo-soft));
}
.neo-terrain-diagram {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, .38fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  margin: 2.2rem 0;
}
.neo-terrain-diagram article {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--neo-line);
  border-radius: 8px;
  background: #fff;
}
.neo-terrain-diagram article span {
  display: block;
  margin-bottom: .7rem;
  color: var(--neo-green);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
}
.neo-terrain-diagram article p {
  margin: 0;
  color: var(--neo-muted);
}
.neo-terrain-diagram > strong {
  position: relative;
  display: grid;
  min-height: 92px;
  place-items: center;
  border-radius: 999px;
  background: var(--neo-navy);
  color: #fff;
  font-size: 1.25rem;
  box-shadow: 0 18px 48px rgba(7, 27, 51, .14);
}
.neo-terrain-diagram > strong::before,
.neo-terrain-diagram > strong::after {
  content: "→";
  position: absolute;
  top: 50%;
  color: var(--neo-green);
  font-size: 1.6rem;
  transform: translateY(-50%);
}
.neo-terrain-diagram > strong::before {
  left: -18px;
}
.neo-terrain-diagram > strong::after {
  right: -18px;
}
.neo-neobox-product {
  background: #fff;
}
.neo-neobox-product img {
  object-fit: contain;
  padding: clamp(16px, 3vw, 34px);
}
.neo-instakdo-autonomy {
  background: var(--neo-navy);
  color: rgba(255,255,255,.82);
}
.neo-instakdo-autonomy h2,
.neo-instakdo-autonomy h3 {
  color: #fff;
}
.neo-instakdo-autonomy .neo-final-option {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.16);
}
.neo-instakdo-autonomy .neo-final-option p {
  color: rgba(255,255,255,.78);
}
.neo-instakdo-autonomy .neo-text-link,
.neo-instakdo-autonomy .neo-centered-signature {
  color: var(--neo-green-light);
}
.neo-instakdo-teaser {
  background: #fff;
}
.neo-instakdo-mini-screen {
  min-height: 430px;
  border-radius: 18px;
}
.neo-instakdo-mini-screen .neo-screen-shell {
  grid-template-columns: 140px minmax(0, 1fr);
}
.neo-instakdo-mini-screen .neo-screen-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.neo-parfect {
  background: #fff;
}
.neo-parfect .neo-split {
  grid-template-columns: minmax(420px, 1fr) minmax(0, 1fr);
  align-items: stretch;
}
.neo-parfect .neo-image-frame {
  height: 100%;
  min-height: 560px;
  background: linear-gradient(135deg, var(--neo-soft), #fff);
}
.neo-parfect-capabilities {
  margin: 2rem 0;
  gap: 12px;
}
.neo-parfect-capabilities span {
  border-color: transparent;
  background: var(--neo-navy);
  color: #fff;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}
.neo-parfect-content > .neo-statement {
  padding: 1.1rem 0;
  border-top: 1px solid var(--neo-line);
  border-bottom: 1px solid var(--neo-line);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

.neo-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 34px;
  align-items: start;
}
.neo-contact-form, .neo-contact-aside {
  padding: 28px;
  border: 1px solid var(--neo-line);
  border-radius: 8px;
  background: #fff;
}
.neo-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
label {
  display: grid;
  gap: .45rem;
  margin-bottom: 16px;
  color: var(--neo-navy);
  font-weight: 800;
}
input, select, textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--neo-line);
  border-radius: 8px;
  padding: .72rem .82rem;
  color: var(--neo-ink);
  font: inherit;
  background: #fff;
}
textarea { resize: vertical; }
.neo-consent { display: flex; align-items: flex-start; gap: .7rem; font-weight: 650; }
.neo-consent input { width: 18px; min-height: 18px; margin-top: .2rem; }
.neo-honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.neo-form-note, .neo-form-status { color: var(--neo-muted); font-size: .95rem; }
.neo-form-status {
  margin: .6rem 0 1rem;
  padding: .85rem 1rem;
  border-radius: 8px;
  background: var(--neo-soft);
}

.neo-footer {
  padding: 46px 0;
  border-top: 1px solid var(--neo-line);
  background: #fff;
  color: var(--neo-muted);
}
.neo-footer-inner {
  width: min(100% - 40px, var(--neo-max));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.neo-footer nav { display: flex; flex-wrap: wrap; gap: 14px 22px; justify-content: flex-end; }
.neo-logo-footer { margin-bottom: .7rem; }
.neo-footer-link {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
}
.neo-footer-link:hover,
.neo-footer a:hover {
  color: var(--neo-navy);
}
.neo-cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: flex;
  width: min(calc(100% - 48px), 660px);
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 18px;
  background: var(--neo-navy);
  color: rgba(255,255,255,.82);
  box-shadow: 0 24px 70px rgba(7, 17, 38, .25);
}
.neo-cookie-banner[hidden] {
  display: none;
}
.neo-cookie-banner strong {
  display: block;
  margin-bottom: .25rem;
  color: #fff;
  font-size: 1.05rem;
}
.neo-cookie-banner p {
  margin: 0;
  font-size: .95rem;
}
.neo-cookie-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 12px;
}
.neo-cookie-actions a {
  color: #fff;
  font-weight: 800;
  white-space: nowrap;
}
.neo-cookie-actions button {
  min-height: 42px;
  padding: .65rem .95rem;
  border: 1px solid var(--neo-green-light);
  border-radius: 8px;
  background: var(--neo-green);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 850;
}

@media (max-width: 1050px) {
  .neo-header-inner { grid-template-columns: auto 1fr auto; }
  .neo-header-signature, .neo-nav, .neo-nav-cta { display: none; }
  .neo-burger { display: block; }
}

@media (max-width: 1200px) {
  .neo-event h2,
  .neo-brand-twin h2 { font-size: clamp(2.05rem, 4vw, 3rem); }
  .neo-experiences-hero .neo-page-hero-grid,
  .neo-pillar-hero .neo-page-hero-grid {
    grid-template-columns: minmax(330px, .43fr) minmax(0, .57fr);
  }
  .neo-experiences-hero .neo-page-visual,
  .neo-pillar-hero .neo-page-visual {
    min-height: clamp(560px, 50vw, 640px);
  }
  .neo-event-composition { gap: 28px; padding: clamp(28px, 4vw, 46px); }
  .neo-brand-composition {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    grid-template-areas:
      "content media"
      "concept media"
      "human human"
      "steps steps"
      "growth benefits"
      "final final";
  }
  .neo-brand-human { align-self: start; }
  .neo-instakdo-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .neo-screen-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 1100px) {
  .neo-experiences-hero .neo-page-hero-grid,
  .neo-pillar-hero .neo-page-hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .neo-experiences-hero .neo-page-hero-grid > div,
  .neo-pillar-hero .neo-page-hero-grid > div {
    max-width: 760px;
  }
  .neo-experiences-hero .neo-hero-title,
  .neo-pillar-hero .neo-hero-title {
    max-width: 680px;
  }
  .neo-experiences-hero .neo-page-visual,
  .neo-pillar-hero .neo-page-visual {
    width: 100%;
    min-height: clamp(470px, 55vw, 620px);
  }
  .neo-instakdo-hero .neo-product-screen {
    width: 100%;
    min-height: clamp(460px, 56vw, 600px);
  }
  .neo-experiences-hero .neo-page-visual img {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 900px) {
  .neo-hero-grid, .neo-split, .neo-contact-layout, .neo-page-hero-grid, .neo-two-col, .neo-assistants .neo-split, .neo-parfect .neo-split { grid-template-columns: 1fr; }
  .neo-event-composition {
    grid-template-columns: 1fr;
    grid-template-areas:
      "content"
      "products"
      "media"
      "bottom";
  }
  .neo-brand-composition {
    grid-template-columns: 1fr;
    grid-template-areas:
      "content"
      "media"
      "concept"
      "steps"
      "growth"
      "benefits"
      "human"
      "final";
  }
  .neo-hero-media { order: 2; }
  .neo-assistant-media { order: 0; }
  .neo-pillars-grid, .neo-before-after-grid, .neo-final-cta-grid, .neo-dna-grid, .neo-large-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .neo-feature-grid, .neo-scenario-grid, .neo-proof-grid, .neo-link-grid, .neo-experience-catalog { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .neo-experience-modal {
    padding: 0;
  }
  .neo-experience-modal-dialog {
    width: 100%;
    max-height: 100dvh;
    border-radius: 0;
  }
  .neo-experience-modal-body {
    grid-template-columns: 1fr;
  }
  .neo-experience-modal-media {
    position: static;
    min-height: 0;
  }
  .neo-methodology { grid-template-columns: 1fr; }
  .neo-methodology article,
  .neo-methodology article + article {
    position: relative;
    padding: 0 0 24px 62px;
    border-top: 0;
    border-left: 2px solid var(--neo-line);
  }
  .neo-methodology span {
    position: absolute;
    left: -24px;
    top: 0;
    margin-top: 0;
  }
  .neo-office-intro, .neo-office-grid { grid-template-columns: 1fr; }
  .neo-gamification-examples, .neo-saga-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .neo-gamification-coach { grid-template-columns: 1fr; }
  .neo-gamification-statement { grid-column: auto; grid-row: auto; margin-top: 1rem; }
  .neo-pillar-title, .neo-final-option h3 { min-height: 0; }
  .neo-event .neo-image-frame, .neo-brand-twin-media .neo-image-frame, .neo-assistant-media .neo-image-frame, .neo-parfect .neo-image-frame { min-height: 380px; }
  .neo-event-bottom { grid-template-columns: 1fr; }
  .neo-brand-steps { grid-template-columns: 1fr; }
  .neo-brand-benefits { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .neo-brand-steps article { padding: 16px 0; border-right: 0; border-bottom: 1px solid var(--neo-line); }
  .neo-brand-steps article:last-child { border-bottom: 0; }
  .neo-brand-steps article:not(:last-child) h3::after { content: ""; }
  .neo-solution-case { grid-template-rows: auto minmax(240px, 1fr) auto; }
  .neo-terrain-diagram { grid-template-columns: 1fr; }
  .neo-terrain-diagram > strong { border-radius: 8px; }
  .neo-terrain-diagram > strong::before,
  .neo-terrain-diagram > strong::after {
    left: 50%;
    right: auto;
    top: auto;
    transform: translateX(-50%) rotate(90deg);
  }
  .neo-terrain-diagram > strong::before { top: -26px; }
  .neo-terrain-diagram > strong::after { bottom: -26px; }
  .neo-instakdo-chips { margin-top: 0; }
}

@media (max-width: 620px) {
  .neo-container, .neo-footer-inner { width: min(100% - 28px, var(--neo-max)); }
  .neo-section { padding: 64px 0; }
  .neo-hero { padding: 62px 0; }
  .neo-hero-title { font-size: 2.45rem; }
  .neo-experiences-hero,
  .neo-pillar-hero {
    padding: 58px 0 64px;
  }
  .neo-experiences-hero .neo-page-hero-grid,
  .neo-pillar-hero .neo-page-hero-grid {
    width: min(100% - 28px, var(--neo-max));
    gap: 28px;
  }
  .neo-experiences-hero .neo-hero-title,
  .neo-pillar-hero .neo-hero-title {
    font-size: clamp(2.5rem, 13vw, 3.4rem);
    line-height: 1.01;
  }
  .neo-experiences-hero .neo-hero-lead,
  .neo-pillar-hero .neo-hero-lead {
    font-size: 1.12rem;
  }
  .neo-experiences-hero .neo-hero-actions,
  .neo-pillar-hero .neo-hero-actions {
    display: grid;
    gap: 12px;
  }
  .neo-experiences-hero .neo-page-visual,
  .neo-pillar-hero .neo-page-visual {
    min-height: clamp(330px, 82vw, 440px);
    border-radius: 20px;
  }
  .neo-instakdo-hero .neo-product-screen {
    min-height: auto;
    border-radius: 20px;
  }
  .neo-pillars-grid, .neo-before-after-grid, .neo-final-cta-grid, .neo-dna-grid, .neo-product-mini-grid, .neo-assistant-grid, .neo-form-grid, .neo-large-grid { grid-template-columns: 1fr; }
  .neo-feature-grid, .neo-scenario-grid, .neo-proof-grid, .neo-link-grid, .neo-experience-catalog { grid-template-columns: 1fr; }
  .neo-instakdo-steps, .neo-screen-cards, .neo-instakdo-mini-screen .neo-screen-cards { grid-template-columns: 1fr; }
  .neo-screen-shell, .neo-instakdo-mini-screen .neo-screen-shell { grid-template-columns: 1fr; }
  .neo-screen-shell aside {
    display: flex;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--neo-line);
  }
  .neo-screen-shell aside span { white-space: nowrap; }
  .neo-screen-cards article { min-height: 118px; }
  .neo-instakdo-mini-screen { min-height: auto; }
  .neo-experience-card-body { min-height: 190px; padding: 20px; }
  .neo-experience-modal-header,
  .neo-experience-modal-footer {
    display: grid;
    padding: 22px 20px;
  }
  .neo-experience-modal-close {
    position: sticky;
    top: 0;
    justify-self: end;
    order: -1;
    z-index: 2;
  }
  .neo-experience-modal-media,
  .neo-experience-modal-content {
    padding: 20px;
  }
  .neo-real-case { grid-template-columns: 1fr; gap: 8px; }
  .neo-hero-actions { display: grid; }
  .neo-hero-proof { display: block; }
  .neo-hero-media .neo-image-frame, .neo-event .neo-image-frame, .neo-brand-twin-media .neo-image-frame, .neo-assistant-media .neo-image-frame, .neo-parfect .neo-image-frame { min-height: 300px; }
  .neo-event-products { grid-template-columns: 1fr; }
  .neo-event-products .neo-product-mini { display: grid; width: 100%; }
  .neo-brand-benefits { grid-template-columns: 1fr; }
  .neo-brand-composition, .neo-event-composition { padding: 24px; border-radius: 20px; }
  .neo-office-column { padding: 20px; }
  .neo-gamification-examples, .neo-saga-grid { grid-template-columns: 1fr; }
  .neo-gamification-examples article { padding: 18px; }
  .neo-saga-grid div { padding: 12px 0; }
  .neo-proof-flow { grid-template-columns: 1fr; }
  .neo-proof-flow strong { line-height: 1; }
  .neo-case-thumb { min-height: 240px; }
  .neo-footer-inner { flex-direction: column; }
  .neo-footer nav { justify-content: flex-start; flex-direction: column; }
  .neo-legal-grid { grid-template-columns: 1fr; }
  .neo-cookie-banner {
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
    display: grid;
  }
  .neo-cookie-actions {
    justify-content: space-between;
  }
  .neo-contact-form, .neo-contact-aside, .neo-pillar-card, .neo-solution-case, .neo-final-option, .neo-assistant-card { padding: 20px; }
  .neo-ai-summary-card { left: 16px; right: 16px; bottom: 16px; min-width: 0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
  }
}
