/* =========================================================
   Block 10 — insights / cases
   Separate file
   Keeps system panel paddings / gaps from landing.css
   ========================================================= */

/* root */
.lp-b10{
  width:100%;
}

/* ---------------------------------------------------------
   Existing head + CTA
   --------------------------------------------------------- */

.lp-b10-head-panel,
.lp-b10-cta-panel{
  align-items:flex-start;
  justify-content:flex-start;
}

.lp-b10-head-inner,
.lp-b10-cta-inner{
  width:100%;
  height:100%;
  min-width:0;
  overflow:hidden;
}

.lp-b10-head-inner{
  display:flex;
  align-items:center;
  justify-content:flex-start;
  text-align:left;
}

.lp-b10-head-stack{
  width:100%;
  align-items:flex-start;
  gap:6px;
}

.lp-b10-head-line1,
.lp-b10-head-line2{
  font-size:28px;
  line-height:1.1;
  letter-spacing:-0.02em;
  text-align:left;
}

.lp-b10-head-line1{
  color:var(--text);
  font-weight:850;
}

.lp-b10-head-line2{
  color:var(--text-2);
  font-weight:800;
}

.lp-b10-cta-inner{
  display:flex;
}

.lp-b10-cta{
  width:100%;
  height:100%;
}

.lp-b10-cta-btn{
  width:100%;
  height:100%;
  min-width:0;
  align-self:stretch;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:16px;
  background:var(--primary);
  color:#fff;
  text-decoration:none;
  font-weight:800;
  font-size:18px;
  box-shadow:0 8px 24px rgba(0,0,0,.25);
  transition:transform .16s ease, filter .16s ease, box-shadow .16s ease;
}

.lp-b10-cta-btn:hover{
  transform:translateY(-1px);
  filter:brightness(1.08);
  box-shadow:0 12px 30px rgba(0,0,0,.35);
}

.lp-b10-cta-btn:active{
  transform:translateY(0);
  filter:brightness(.98);
  box-shadow:0 8px 24px rgba(0,0,0,.25);
}

/* ---------------------------------------------------------
   Legacy square cards
   Keep in DOM, hide in new composition
   --------------------------------------------------------- */

.lp-b10-cases-row{
  display:none;
}

.lp-b10-case{
  width:100%;
  height:100%;
  min-width:0;
  display:flex;
  flex-direction:column;
}

.lp-b10-pack--top{
  color:var(--text-2);
  font-size:17px;
  line-height:1.22;
  font-weight:650;
  text-align:left;
}

.lp-b10-pack--mid{
  margin-top:16px;
  color:var(--text);
  font-size:18px;
  line-height:1.18;
  font-weight:750;
  text-align:left;
}

.lp-b10-pack--bottom{
  margin-top:auto;
  padding-top:12px;
  border-top:1px solid rgba(255,255,255,.06);
  color:var(--text-2);
  font-weight:650;
  line-height:1.2;
  text-align:left;
}

html[data-theme="light"] .lp-b10-pack--bottom{
  border-top-color:rgba(15,23,42,.08);
}

.lp-b10-result-action,
.lp-b10-result-arrow{
  color:var(--text);
  font-weight:750;
}

.lp-b10-result-value{
  color:var(--primary);
  font-weight:750;
}

.lp-b10-result-num{
  font-weight:800;
}

/* ---------------------------------------------------------
   New vertical stories
   --------------------------------------------------------- */

.lp-b10-stories-row{
  row-gap:24px;
}

.lp-b10-story-panel{
  grid-column:span 8;
  align-items:flex-start;
  justify-content:flex-start;
  min-height:250px;
}

.lp-b10-story-inner{
  width:100%;
  min-width:0;
  display:grid;
  grid-template-columns:minmax(220px, 28%) minmax(0, 1fr);
  gap:24px;
  align-items:stretch;
}

.lp-b10-story-meta{
  min-width:0;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  gap:18px;
  padding-right:8px;
  border-right:1px solid rgba(255,255,255,.06);
}

html[data-theme="light"] .lp-b10-story-meta{
  border-right-color:rgba(15,23,42,.08);
}

.lp-b10-story-name{
  color:var(--text);
  font-size:26px;
  line-height:1.05;
  font-weight:850;
  letter-spacing:-0.02em;
}

.lp-b10-story-facts{
  display:flex;
  flex-direction:column;
  gap:8px;
  min-width:0;
}

.lp-b10-story-fact{
  color:var(--text-2);
  font-size:15px;
  line-height:1.25;
  font-weight:650;
  overflow-wrap:anywhere;
  word-break:break-word;
}

.lp-b10-story-content{
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:20px;
}

.lp-b10-story-block{
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:8px;
}

.lp-b10-story-block--after{
  margin-top:auto;
  padding-top:16px;
  border-top:1px solid rgba(255,255,255,.06);
}

html[data-theme="light"] .lp-b10-story-block--after{
  border-top-color:rgba(15,23,42,.08);
}

.lp-b10-story-label{
  color:var(--text-2);
  font-size:12px;
  line-height:1.2;
  letter-spacing:.16em;
  text-transform:uppercase;
  font-weight:800;
}

.lp-b10-story-text{
  color:var(--text);
  font-size:24px;
  line-height:1.14;
  font-weight:760;
  letter-spacing:-0.015em;
  overflow-wrap:anywhere;
  word-break:break-word;
}

.lp-b10-story-result{
  color:var(--text);
  font-size:22px;
  line-height:1.16;
  font-weight:760;
  letter-spacing:-0.01em;
  overflow-wrap:anywhere;
  word-break:break-word;
}

/* ---------------------------------------------------------
   Bottom row: bridge + CTA
   --------------------------------------------------------- */

.lp-b10-bottom-row{
  align-items:stretch;
}

.lp-b10-bridge-panel,
.lp-b10-bottom-cta-panel{
  align-items:flex-start;
  justify-content:flex-start;
  min-height:164px;
}

.lp-b10-bridge-inner,
.lp-b10-bottom-cta-inner{
  width:100%;
  height:100%;
  min-width:0;
}

.lp-b10-bridge-inner{
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:6px;
}

.lp-b10-bridge-line1,
.lp-b10-bridge-line2{
  overflow-wrap:anywhere;
  word-break:break-word;
}

.lp-b10-bridge-line1{
  color:var(--text);
  font-size:28px;
  line-height:1.08;
  font-weight:850;
  letter-spacing:-0.02em;
}

.lp-b10-bridge-line2{
  color:var(--text-2);
  font-size:28px;
  line-height:1.08;
  font-weight:800;
  letter-spacing:-0.02em;
}

.lp-b10-bottom-cta-inner{
  display:flex;
}

.lp-b10-bottom-cta{
  width:100%;
  height:100%;
}

.lp-b10-cta-btn--bottom{
  height:100%;
  min-height:116px;
  font-size:22px;
  letter-spacing:-0.01em;
}

/* ---------------------------------------------------------
   Responsive
   --------------------------------------------------------- */

@media (max-width: 980px){
  .lp-b10-head-line1,
  .lp-b10-head-line2{
    font-size:24px;
  }

  .lp-b10-cta-btn{
    font-size:16px;
  }

  .lp-b10-stories-row > .lp-b10-story-panel{
    grid-column:span 12;
  }

  .lp-b10-story-inner{
    grid-template-columns:1fr;
    gap:18px;
  }

  .lp-b10-story-meta{
    gap:12px;
    padding-right:0;
    padding-bottom:14px;
    border-right:0;
    border-bottom:1px solid rgba(255,255,255,.06);
  }

  html[data-theme="light"] .lp-b10-story-meta{
    border-bottom-color:rgba(15,23,42,.08);
  }

  .lp-b10-story-name{
    font-size:22px;
  }

  .lp-b10-story-text{
    font-size:20px;
    line-height:1.16;
  }

  .lp-b10-story-result{
    font-size:19px;
    line-height:1.18;
  }

  .lp-b10-bridge-line1,
  .lp-b10-bridge-line2{
    font-size:24px;
    line-height:1.1;
  }

  .lp-b10-cta-btn--bottom{
    min-height:96px;
    font-size:18px;
  }
}

@media (max-width: 767px){
  .lp-b10-top-row > .lp-span-8,
  .lp-b10-top-row > .lp-span-4,
  .lp-b10-bottom-row > .lp-span-6{
    grid-column:span 12;
  }

  /* upper CTA hidden on all sizes in the new version */
  .lp-b10-cta-panel{
    display:none;
  }

  .lp-b10-story-panel{
    min-height:auto;
  }

  .lp-b10-story-name{
    font-size:20px;
  }

  .lp-b10-story-fact{
    font-size:14px;
  }

  .lp-b10-story-text{
    font-size:18px;
    line-height:1.18;
  }

  .lp-b10-story-result{
    font-size:17px;
    line-height:1.2;
  }

  .lp-b10-bridge-panel,
  .lp-b10-bottom-cta-panel{
    min-height:auto;
  }

  .lp-b10-bridge-line1,
  .lp-b10-bridge-line2{
    font-size:22px;
  }

  .lp-b10-cta-btn--bottom{
    min-height:84px;
    font-size:17px;
  }
}

/* desktop / tablet: upper CTA hidden in new composition too */
@media (min-width: 768px){
  .lp-b10-cta-panel{
    display:none;
  }
}