/* ============================================================
   DIA v6 — hero, animated signal background, callback panel,
   workflow panel and result strip.
   ------------------------------------------------------------
   Background layers (transform/opacity only):
     1 glow    large cool blue light
     2 beam    cyan refraction sweep
     3 warm    a small amount of orange, low opacity
     4 grid    fine technical grid, masked
     5 lines   SVG signal paths with travelling dashes
     6 veil    fade into the page background
   js/hero-bg.js pauses everything off-screen / in hidden tabs.
   ============================================================ */

.hero {
  position: relative;
  isolation: isolate;
  padding-top: calc(var(--header-h) + clamp(1.5rem, 0.4rem + 2.6vw, 2.5rem));
  padding-bottom: clamp(2rem, 0.9rem + 3vw, 3rem);
  overflow: hidden;
}

/* ---------------- background ---------------- */
.hero-bg {
  position: absolute;
  inset: -10% -6% -14% -6%;
  z-index: -1;
  pointer-events: none;
  contain: strict;
}
.hero-bg__layer { position: absolute; will-change: transform; transform: translate3d(0, 0, 0); }

/* Hero light blobs. NOTE: this class must never be called .field —
   that name belongs to form rows in components.css, and the blur here
   made every form control on the site invisible. */
.glow {
  border-radius: 50%;
  filter: blur(64px);
}
.glow--blue {
  width: 58vw; height: 52vw;
  max-width: 900px; max-height: 780px;
  left: 44%; top: -18%;
  background: radial-gradient(circle at 50% 50%, rgba(21, 94, 239, 0.26), rgba(21, 94, 239, 0) 68%);
  animation: drift-a 44s var(--ease) infinite alternate;
}
.glow--cyan {
  width: 44vw; height: 40vw;
  max-width: 680px; max-height: 620px;
  left: 6%; top: -8%;
  background: radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.20), rgba(6, 182, 212, 0) 66%);
  animation: drift-b 56s var(--ease) infinite alternate;
}
.glow--ice {
  width: 50vw; height: 42vw;
  max-width: 760px; max-height: 640px;
  left: 20%; top: 34%;
  background: radial-gradient(circle at 50% 50%, rgba(120, 160, 210, 0.16), rgba(120, 160, 210, 0) 66%);
  animation: drift-c 50s var(--ease) infinite alternate;
}
.glow--warm {
  width: 24vw; height: 22vw;
  max-width: 340px; max-height: 320px;
  left: 66%; top: 48%;
  background: radial-gradient(circle at 50% 50%, rgba(249, 115, 22, 0.14), rgba(249, 115, 22, 0) 62%);
  animation: drift-d 62s var(--ease) infinite alternate;
}

/* 2 — cyan refraction beam */
.beam {
  inset: -35% -20%;
  background: linear-gradient(102deg,
    rgba(255,255,255,0) 36%,
    rgba(207, 250, 254, 0.55) 47%,
    rgba(255,255,255,0.30) 52%,
    rgba(255,255,255,0) 64%);
  opacity: 0.5;
  animation: sweep 24s linear infinite;
}

/* 4 — technical grid */
.grid-layer {
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(16, 24, 32, 0.055) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(16, 24, 32, 0.055) 1px, transparent 1px);
  background-size: 68px 68px;
  -webkit-mask-image: radial-gradient(120% 90% at 60% 22%, #000 12%, transparent 72%);
  mask-image: radial-gradient(120% 90% at 60% 22%, #000 12%, transparent 72%);
  animation: grid-slide 90s linear infinite;
  will-change: transform;
}

/* 5 — signal lines */
.signal { inset: 0; opacity: 0.55; }
.signal svg { width: 100%; height: 100%; display: block; }
.signal path { fill: none; stroke-linecap: round; }
.signal .trace { stroke: rgba(21, 94, 239, 0.20); stroke-width: 1.2; }
.signal .pulse {
  stroke: var(--cyan);
  stroke-width: 1.6;
  stroke-dasharray: 26 620;
  animation: trace-run 7s linear infinite;
}
.signal .pulse--2 { animation-duration: 9s; animation-delay: 1.4s; stroke: rgba(21, 94, 239, 0.85); }
.signal .pulse--3 { animation-duration: 11s; animation-delay: 2.8s; stroke: rgba(6, 182, 212, 0.8); }
.signal .node { fill: rgba(21, 94, 239, 0.55); }

/* 6 — veil */
.veil {
  inset: 0;
  background:
    radial-gradient(120% 76% at 52% 20%, rgba(247,249,252,0) 42%, rgba(247,249,252,0.70) 78%, var(--page-bg) 100%),
    linear-gradient(180deg, rgba(247,249,252,0.55) 0%, rgba(247,249,252,0) 20%);
}

@keyframes drift-a {
  0%   { transform: translate3d(0,0,0) scale(1); }
  50%  { transform: translate3d(-6%, 4%, 0) scale(1.07); }
  100% { transform: translate3d(3%, -3%, 0) scale(0.97); }
}
@keyframes drift-b {
  0%   { transform: translate3d(0,0,0) scale(1.04); }
  50%  { transform: translate3d(7%, 6%, 0) scale(0.95); }
  100% { transform: translate3d(-4%, 2%, 0) scale(1.08); }
}
@keyframes drift-c {
  0%   { transform: translate3d(0,0,0) scale(0.97); }
  50%  { transform: translate3d(6%, -6%, 0) scale(1.1); }
  100% { transform: translate3d(-5%, 3%, 0) scale(1); }
}
@keyframes drift-d {
  0%   { transform: translate3d(0,0,0) scale(1.08); }
  50%  { transform: translate3d(-7%, -5%, 0) scale(0.94); }
  100% { transform: translate3d(5%, 5%, 0) scale(1.05); }
}
@keyframes sweep {
  0%   { transform: translate3d(-26%, 0, 0); }
  100% { transform: translate3d(26%, 0, 0); }
}
@keyframes grid-slide {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-68px, -68px, 0); }
}
@keyframes trace-run {
  0%   { stroke-dashoffset: 646; }
  100% { stroke-dashoffset: 0; }
}

.hero-bg.is-paused .hero-bg__layer,
.hero-bg.is-paused .signal path { animation-play-state: paused; }
.hero-bg[data-parallax] .glow { transition: translate 600ms var(--ease-out); }

@media (prefers-reduced-motion: reduce) {
  .hero-bg__layer, .signal path { animation: none !important; }
  .beam { opacity: 0.3; }
  .signal .pulse { stroke-dasharray: none; opacity: 0.35; }
}
html.no-js .hero-bg__layer { animation: none; }

/* ---------------- hero composition ---------------- */
.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(520px, 0.92fr);
  grid-template-areas:
    "copy stage"
    "secondary stage";
  align-content: center;
  gap: var(--s5) clamp(1.5rem, 0.5rem + 3vw, 3.5rem);
  align-items: center;
}
.hero__copy { grid-area: copy; align-self: end; max-width: var(--measure-hero); }
.hero__stage { grid-area: stage; }
.hero__secondary { grid-area: secondary; align-self: start; }

.hero h1 {
  max-width: 16ch;
  margin-bottom: var(--s4);
  font-weight: var(--fw-display);
  letter-spacing: var(--ls-display);
}
.hero__sub { font-size: var(--fs-lead); color: var(--text-secondary); max-width: 32rem; }
.hero__modules {
  margin-top: var(--s4);
  font-size: var(--fs-sm);
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero__modules::before {
  content: "";
  width: 18px; height: 1px;
  background: var(--cyan);
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: var(--s3); margin-top: var(--s5); }
.hero__trust { margin-top: var(--s4); font-size: var(--fs-xs); color: var(--text-muted); }

/* ---------------- product panel: callback + workflow ---------------- */
.demo-panel-wrap {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin-inline: auto;
}

.callcard {
  position: relative;
  z-index: 2;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-2xl);
  box-shadow: var(--sh-xl);
  padding: clamp(1.25rem, 0.9rem + 1vw, 1.75rem);
}
.callcard--primary { max-width: none; }
.callcard.is-focused { border-color: rgba(21, 94, 239, 0.45); box-shadow: var(--sh-xl), var(--sh-focus); }

.callcard__head { display: flex; align-items: center; gap: var(--s3); margin-bottom: var(--s4); }
.callcard__icon {
  position: relative;
  width: 38px; height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: var(--primary);
  color: #fff;
  flex: none;
  box-shadow: var(--sh-blue);
  margin-bottom: 0;
}
.callcard__icon svg { width: 18px; height: 18px; }
.callcard__icon::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 15px;
  border: 1.5px solid rgba(21, 94, 239, 0.35);
  animation: cb-pulse 2.8s ease-out infinite;
}
@keyframes cb-pulse {
  0% { transform: scale(0.88); opacity: 0.9; }
  70% { transform: scale(1.14); opacity: 0; }
  100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .callcard__icon::after { animation: none; opacity: 0.35; } }

.callcard h2 { font-size: 1.15rem; margin: 0; font-weight: var(--fw-title); }
.callcard__note { font-size: var(--fs-sm); color: var(--text-secondary); margin-bottom: var(--s4); }

/* input + button visually connected */
.callcard__row {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 0;
  border: 1px solid var(--border-medium);
  border-radius: var(--r-md);
  background: var(--surface);
  overflow: hidden;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.callcard__row:focus-within { border-color: var(--primary); box-shadow: var(--sh-focus); }
.callcard__row .select,
.callcard__row .input {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  min-height: 50px;
}
.callcard__row .select {
  border-right: 1px solid var(--border-medium);
  background-color: var(--surface-sunken);
  color: var(--text-primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none' stroke='%235C6975' stroke-width='1.8' stroke-linecap='round'%3E%3Cpath d='M5.5 8L10 12.5 14.5 8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  background-size: 16px;
  padding-right: 1.9rem;
  font-size: var(--fs-sm);
  font-weight: 500;
}
.callcard__row .input { font-size: 17px; letter-spacing: 0.01em; }
.callcard__row .select:focus, .callcard__row .input:focus { box-shadow: none; }

.callcard .btn--block { margin-top: var(--s3); font-weight: var(--fw-btn); }
.btn.is-ready { box-shadow: var(--sh-blue); }

.cb-ready {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  padding: 3px 10px;
  border-radius: var(--r-pill);
  background: var(--success-soft);
  color: #10794F;
  font-size: var(--fs-xs);
  font-weight: var(--fw-label);
}
.cb-ready::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

.callcard__under {
  margin-top: 10px;
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  text-align: center;
}
.callcard__legal {
  margin-top: var(--s3);
  font-size: var(--fs-xs);
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 10px;
}
.callcard__legal button {
  color: var(--text-secondary);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  font-size: var(--fs-xs);
}
.legal-detail {
  margin-top: var(--s3);
  padding: var(--s3) var(--s4);
  border-radius: var(--r-sm);
  background: var(--surface-soft);
  font-size: var(--fs-xs);
  color: var(--text-secondary);
  line-height: 1.5;
}

/* live call strip */
.cb-live {
  margin-top: var(--s4);
  padding: var(--s3) var(--s4);
  border-radius: var(--r-md);
  background: var(--surface-blue);
  border: 1px solid rgba(21, 94, 239, 0.20);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px var(--s3);
  animation: msg-in 300ms var(--ease-out) both;
}
.cb-live .wave i { background: var(--primary); }
.cb-live__timer { margin-left: auto; font-variant-numeric: tabular-nums; font-size: var(--fs-sm); color: var(--text-secondary); }

/* scenario step */
.callcard__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  font-size: var(--fs-xs);
  color: var(--text-secondary);
  cursor: pointer;
}
.callcard__back::before {
  content: "";
  width: 6px; height: 6px;
  border-left: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg);
}
.callcard__step { animation: msg-in 300ms var(--ease-out) both; }
.scenarios { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s2); margin-bottom: var(--s3); }
.scenario {
  min-height: 44px;
  padding: 0.5rem 0.7rem;
  border-radius: var(--r-sm);
  border: 1px solid var(--border-medium);
  background: var(--surface);
  font-size: var(--fs-sm);
  cursor: pointer;
  transition: border-color var(--t-fast), background var(--t-fast), color var(--t-fast);
}
.scenario:hover { border-color: rgba(16,24,32,0.3); }
.scenario[aria-pressed="true"] {
  border-color: var(--primary);
  background: var(--surface-blue);
  color: var(--primary-dark);
  font-weight: 550;
}
.cb-scenario-note {
  margin: 0 0 var(--s4);
  padding: var(--s3) var(--s4);
  border-radius: var(--r-sm);
  background: var(--surface-soft);
  border-left: 2px solid var(--cyan);
  font-size: var(--fs-sm);
  animation: msg-in 240ms var(--ease-out) both;
}
.callcard__lang { display: flex; align-items: center; gap: var(--s2); font-size: var(--fs-xs); color: var(--text-secondary); }
.callcard__lang select { min-height: 40px; font-size: var(--fs-sm); padding-block: 0.3rem; }

/* ---------------- workflow panel (connected to the card) ---------------- */
.workflow {
  position: relative;
  margin-top: -14px;
  padding: calc(var(--s5) + 14px) var(--s5) var(--s5);
  border: 1px solid var(--border-soft);
  border-top: 0;
  border-radius: 0 0 var(--r-2xl) var(--r-2xl);
  background: linear-gradient(180deg, var(--surface-soft), var(--surface));
  box-shadow: var(--sh-md);
  z-index: 1;
}
.workflow__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s3);
  margin-bottom: var(--s3);
}
.workflow__head h3 {
  margin: 0;
  font-size: 11px;
  font-weight: var(--fw-label);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--text-muted);
}
.workflow__state {
  font-size: var(--fs-xs);
  font-weight: 550;
  color: var(--primary-dark);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.workflow__state::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.5);
  animation: node-pulse 2.6s ease-out infinite;
}
@keyframes node-pulse {
  0% { box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(6, 182, 212, 0); }
  100% { box-shadow: 0 0 0 0 rgba(6, 182, 212, 0); }
}

.flow { list-style: none; margin: 0; padding: 0; display: grid; gap: 0; }
.flow__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0;
  padding: 7px 0;
  font-size: var(--fs-sm);
  color: var(--text-muted);
  transition: color var(--t-base);
}
.flow__item + .flow__item::before {
  content: "";
  position: absolute;
  left: 8px;
  top: -6px;
  width: 1px;
  height: 12px;
  background: var(--border-medium);
}
.flow__dot {
  flex: none;
  width: 17px; height: 17px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  position: relative;
  background: var(--surface);
}
.flow__item.is-active { color: var(--primary); font-weight: 550; }
.flow__item.is-active .flow__dot { border-color: var(--primary); }
.flow__item.is-active .flow__dot::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--cyan);
  animation: livedot 1.3s ease-in-out infinite;
}
.flow__item.is-done { color: var(--text-primary); }
.flow__item.is-done .flow__dot { background: var(--success); border-color: var(--success); }
.flow__item.is-done .flow__dot::after {
  content: "";
  position: absolute;
  inset: 0; margin: auto;
  width: 7px; height: 4px;
  border-left: 1.7px solid #fff;
  border-bottom: 1.7px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
}
.flow__item.is-attention { color: var(--warning); }
.flow__item.is-attention .flow__dot { border-color: var(--orange); background: var(--orange-soft); }
@keyframes livedot { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

/* result strip inside the same panel */
.workflow__results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--s2);
  margin-top: var(--s4);
  padding-top: var(--s4);
  border-top: 1px solid var(--border-soft);
}
.resultchip {
  display: grid;
  gap: 3px;
  min-width: 0;
  padding: 10px 12px;
  border-radius: var(--r-sm);
  background: var(--surface);
  border: 1px solid var(--border-soft);
  opacity: 0.7;
  transition: opacity var(--t-slow), border-color var(--t-slow), background var(--t-slow);
}
.resultchip b { font-size: var(--fs-xs); font-weight: var(--fw-label); color: var(--text-primary); line-height: 1.3; overflow-wrap: anywhere; }
.resultchip small { font-size: 12px; line-height: 1.35; color: var(--text-secondary); overflow-wrap: anywhere; }
.resultchip.is-on { opacity: 1; border-color: rgba(22, 163, 106, 0.35); background: var(--success-soft); }
.resultchip.is-on b { color: #0F6A47; }

/* post-demo conversion */
.cb-conversion {
  margin-top: var(--s4);
  padding: var(--s5);
  border-radius: var(--r-xl);
  background: var(--surface);
  border: 1px solid var(--border-soft);
  box-shadow: var(--sh-md);
  animation: msg-in 300ms var(--ease-out) both;
}
.cb-conversion h3 { font-size: var(--fs-h3); margin-bottom: var(--s3); }
.cb-conversion .row { gap: var(--s2); }
.cb-conversion .btn { flex: 1; }


/* ============================================================
   LARGE DESKTOP HERO — 1920 / 2560 screens
   ============================================================ */
@media (min-width: 1600px) {
  .hero {
    min-height: min(900px, 88vh);
    display: flex;
    align-items: center;
    padding-top: calc(var(--header-h) + 3.25rem);
    padding-bottom: 4rem;
  }

  .hero > .hero__inner {
    width: 100%;
    grid-template-columns: minmax(0, 1.08fr) minmax(560px, .92fr);
    column-gap: clamp(4rem, 5vw, 7rem);
  }

  .hero__copy { max-width: 46rem; }
  .hero h1 { max-width: 15ch; }
  .hero__sub { max-width: 38rem; }
  .hero__modules { font-size: 1rem; }

  .demo-panel-wrap {
    max-width: 600px;
  }

  .callcard {
    padding: 2rem;
  }

  .callcard h2 { font-size: 1.3rem; }
  .callcard__note { font-size: 1rem; }
  .workflow { padding: 1.35rem 2rem 1.6rem; }
}

@media (min-width: 2200px) {
  .hero > .hero__inner {
    grid-template-columns: minmax(0, 1.08fr) minmax(620px, .92fr);
    column-gap: clamp(5rem, 6vw, 9rem);
  }
  .demo-panel-wrap { max-width: 640px; }
}

/* ============================================================
   Demo call: countdown, soft warning and retry
   Same tokens as the rest of the callback card.
   ============================================================ */
.cb-live__caption {
  flex-basis: 100%;
  font-size: var(--fs-xs);
  color: var(--text-muted);
}

.cb-live__timer { font-variant-numeric: tabular-nums; }

.cb-demo-warning {
  display: grid;
  gap: 2px;
  margin-top: var(--s3);
  padding: 0.7rem 0.9rem;
  border-radius: var(--r-md);
  border: 1px solid rgba(180, 83, 9, 0.22);
  background: rgba(180, 83, 9, 0.06);
  animation: msg-in 240ms var(--ease-out) both;
}
.cb-demo-warning strong { font-size: var(--fs-sm); color: var(--warning); }
.cb-demo-warning span { font-size: var(--fs-xs); color: var(--text-secondary); }

.cb-retry { margin-top: var(--s3); }

@media (prefers-reduced-motion: reduce) {
  .cb-demo-warning { animation: none; }
}

/* ---------------- hero channel strip ----------------
   Replaces the single "modules" line: the visitor sees every channel
   DIA covers before scrolling. Wraps freely on narrow screens. */
.hero__channels {
  list-style: none;
  margin: var(--s4) 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  max-width: 34rem;
}
.hero__channels li {
  font-size: var(--fs-xs);
  font-weight: var(--fw-label);
  color: var(--text-secondary);
  background: rgba(21, 94, 239, 0.06);
  border: 1px solid rgba(21, 94, 239, 0.12);
  border-radius: var(--r-pill);
  padding: 5px 11px;
  line-height: 1.25;
}

/* ===== DIA hero commercial refresh ===== */
.hero__accent {
  color: var(--primary);
}
.hero__channels {
  margin-top: 1.15rem;
  width: fit-content;
  max-width: 100%;
  padding: .55rem .7rem;
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  border: 1px solid rgba(21,94,239,.12);
  border-radius: 16px;
  background: rgba(255,255,255,.7);
  box-shadow: 0 10px 28px rgba(15,23,42,.045);
  backdrop-filter: blur(12px);
}
.hero__channels li {
  position: relative;
  padding: .38rem .65rem .38rem 1.25rem;
  border-radius: 999px;
  color: var(--text-secondary);
  font-size: .76rem;
  font-weight: 650;
  background: rgba(21,94,239,.045);
}
.hero__channels li::before {
  content: '';
  position: absolute;
  left: .52rem;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg,var(--primary),var(--cyan));
  box-shadow: 0 0 0 3px rgba(21,94,239,.07);
}
.callcard__trust {
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  gap:.55rem .9rem;
  margin:.9rem 0 .25rem;
  padding-top:.85rem;
  border-top:1px solid var(--border-soft);
  color:var(--text-secondary);
  font-size:.72rem;
  font-weight:600;
}
.callcard__trust span { white-space:nowrap; }
.callcard__trust span::first-letter { color:var(--primary); }

@media(max-width:560px){
  .hero__channels { width:100%; gap:.38rem; padding:.5rem; border-radius:14px; }
  .hero__channels li { font-size:.72rem; }
  .callcard__trust { justify-content:flex-start; }
}

/* ===== Hero visual alignment v2 — reference layout ===== */
@media (min-width: 941px) {
  .hero {
    padding-top: calc(var(--header-h) + 3rem);
    padding-bottom: 1.4rem;
  }
  .hero__inner {
    grid-template-columns: minmax(0, 1.02fr) minmax(480px, .98fr);
    gap: 1.35rem clamp(3rem, 6vw, 7rem);
    align-items: start;
  }
  .hero__copy { max-width: 650px; padding-top: 1.25rem; }
  .hero h1 {
    max-width: 11ch;
    font-size: clamp(3.35rem, 4.55vw, 5.25rem);
    line-height: .98;
    letter-spacing: -.055em;
    margin: .65rem 0 1.15rem;
  }
  .hero__sub {
    max-width: 42rem;
    font-size: clamp(1.03rem, 1.15vw, 1.22rem);
    line-height: 1.55;
  }
  .demo-panel-wrap { max-width: 610px; }
  .callcard { padding: 1.55rem 1.65rem; border-radius: 24px; }
  .callcard h2 { font-size: 1.35rem; }
  .workflow { display: block; }
}

.hero__channels {
  width: 100%;
  max-width: 650px;
  display: grid;
  grid-template-columns: repeat(6,minmax(0,1fr));
  gap: 0;
  padding: .75rem .25rem;
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 15px;
  background: rgba(255,255,255,.84);
  box-shadow: 0 8px 24px rgba(15,23,42,.035);
}
.hero__channels li {
  min-width: 0;
  padding: .15rem .45rem;
  border-radius: 0;
  background: transparent;
  border: 0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:.38rem;
  text-align:center;
  color:var(--text-primary);
  font-size:.72rem;
  font-weight:600;
}
.hero__channels li:not(:last-child){ border-right:1px solid rgba(15,23,42,.09); }
.hero__channels li::before { display:none; }
.hero__channel-icon {
  width:26px;height:26px;
  display:grid;place-items:center;
  color:var(--primary);
}
.hero__channel-icon svg { width:23px;height:23px; fill:none; stroke:currentColor; stroke-width:1.8; stroke-linecap:round; stroke-linejoin:round; }
.hero__channel-icon--wa { color:#10b981; }
.hero__channel-icon--dark { color:#111827; }

.hero__ctas { gap:.85rem; margin-top:1.25rem; }
.hero-cta {
  min-height:64px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:.8rem;
  padding:.7rem 1.05rem;
  text-align:left;
}
.hero-cta strong { display:block; font-size:.94rem; line-height:1.1; }
.hero-cta small { display:block; margin-top:.25rem; font-size:.72rem; line-height:1.1; opacity:.82; font-weight:500; }
.hero-cta--primary { min-width:235px; }
.hero-cta--secondary { min-width:220px; justify-content:space-between; }
.hero-cta__icon { font-size:1.25rem; }
.hero-cta__arrow { font-size:1.35rem; }

.callcard__trust {
  justify-content:space-between;
  gap:.5rem;
  margin:1rem 0 .2rem;
}

@media(max-width:940px){
  .hero__channels { grid-template-columns:repeat(3,minmax(0,1fr)); }
  .hero__channels li:nth-child(3){border-right:0;}
  .hero__channels li:nth-child(-n+3){padding-bottom:.55rem;margin-bottom:.35rem;border-bottom:1px solid rgba(15,23,42,.08);}
}
@media(max-width:560px){
  .hero__channels { grid-template-columns:repeat(3,minmax(0,1fr)); padding:.65rem .2rem; }
  .hero__channels li { font-size:.68rem; padding:.25rem .2rem; }
  .hero__channel-icon{width:24px;height:24px}
  .hero-cta{width:100%;}
}
