/* ═══════════════════════════════════════════
   SECTION 1 — HERO
═══════════════════════════════════════════ */
.hero {
  background: var(--warm-white);
  padding: 88px 0 48px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    180deg,
    transparent,
    transparent 71px,
    rgba(0,0,0,.022) 71px,
    rgba(0,0,0,.022) 72px
  );
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: center;
}
.hero-left {}
.hero-right { position: relative; }
.hero h1 {
  font-size: clamp(1.9rem, 3vw, 2.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.035em;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.65;
  max-width: 560px;
  margin-bottom: 32px;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  padding: 13px 26px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .01em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,.12), 0 0 0 1px rgba(45,95,138,.15);
  transition: background .18s, transform .15s, box-shadow .18s;
}
.hero .btn-primary {
  padding: 16px 32px;
  font-size: 15px;
  box-shadow: 0 2px 8px rgba(45,95,138,.28), 0 0 0 1px rgba(45,95,138,.2);
}
.btn-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color .18s, gap .2s;
}
.hero-trust-line {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--text-muted);
  margin-bottom: 20px;
}
/* ─── HERO SCAN CARD ─── */
.scan-deck {
  cursor: pointer;
  user-select: none;
  padding-right: 24px;
}
.scan-deck-cards {
  display: grid;
}
.scan-card {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  background: #fff;
  border: 1px solid var(--border-lt);
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0,0,0,.07), 0 1px 4px rgba(0,0,0,.05);
  overflow: hidden;
  transition: transform .55s cubic-bezier(.23,1,.32,1), opacity .45s ease;
}
.scan-card[data-pos="0"] { transform: rotate(1.5deg); opacity: 1; z-index: 4; }
.scan-card[data-pos="1"] { transform: rotate(3.5deg) translate(8px,6px) scale(0.97); opacity: 0.6; z-index: 3; }
.scan-card[data-pos="2"] { transform: rotate(5.5deg) translate(16px,12px) scale(0.94); opacity: 0.35; z-index: 2; }
.scan-card[data-pos="3"] { transform: rotate(7deg) translate(24px,18px) scale(0.91); opacity: 0; z-index: 1; pointer-events: none; }
.scan-card.is-leaving { transform: rotate(7.5deg) translate(28px,20px) scale(0.88) !important; opacity: 0 !important; z-index: 0 !important; }
.scan-deck:hover .scan-card[data-pos="0"] { transform: rotate(0deg); }
.scan-card:not([data-pos="0"]) .scan-row { animation: none; }
.scan-deck-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 16px;
  padding-right: 24px;
}
.scan-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--border);
  transition: background .3s, transform .3s;
}
.scan-dot--active {
  background: var(--blue);
  transform: scale(1.4);
}
.scan-card-header {
  background: var(--blue);
  padding: 14px 18px;
  display: flex; align-items: center; justify-content: space-between;
}
.scan-card-title {
  font-family: var(--mono);
  font-size: 9.5px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
.scan-card-badge {
  font-family: var(--mono);
  font-size: 9.5px; font-weight: 500;
  color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.12);
  border-radius: 3px; padding: 3px 8px;
}
.scan-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px; align-items: baseline;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border-lt);
  animation: scanRowIn .4s ease both;
}
.scan-row:last-child { border-bottom: none; }
@keyframes scanRowIn {
  from { opacity: 0; transform: translateX(10px); }
  to   { opacity: 1; transform: translateX(0); }
}
.scan-row:nth-child(1) { animation-delay: .3s; }
.scan-row:nth-child(2) { animation-delay: .44s; }
.scan-row:nth-child(3) { animation-delay: .58s; }
.scan-row:nth-child(4) { animation-delay: .72s; }
.scan-row:nth-child(5) { animation-delay: .86s; }
.scan-row-label {
  font-size: 12.5px; font-weight: 500; color: var(--text-2); line-height: 1.3;
}
.scan-row-label span {
  display: block;
  font-size: 11px; font-weight: 400; color: var(--text-muted); margin-top: 2px;
}
.scan-row-saving {
  font-family: var(--mono);
  font-size: 11px; font-weight: 600; color: var(--blue); white-space: nowrap;
}
.scan-row--leave .scan-row-label { color: var(--text-muted); text-decoration: line-through; text-decoration-color: var(--border); }
.scan-row--leave .scan-row-saving { color: var(--text-muted); font-weight: 400; }
.scan-card-footer {
  background: var(--surface);
  padding: 14px 18px;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 2px solid rgba(45,95,138,.1);
}
.scan-card-total-label {
  font-family: var(--mono);
  font-size: 9.5px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--text-muted);
}
.scan-card-total-value {
  font-family: var(--mono);
  font-size: 22px; font-weight: 700; color: var(--blue);
  letter-spacing: -.01em;
}
.scan-card-subtitle {
  font-size: 15px; font-weight: 600;
  color: var(--gold);
  margin-top: 4px;
  font-family: var(--font);
  letter-spacing: -.01em;
  text-transform: none;
  line-height: 1.2;
}
@keyframes scanCardIn {
  from { opacity: 0; transform: rotate(1.5deg) translateY(6px); }
  to   { opacity: 1; transform: rotate(1.5deg); }
}

/* ═══════════════════════════════════════════
   SECTION 2 — PROBLEMS
═══════════════════════════════════════════ */
.problems {
  background: var(--surface);
  padding: 88px 0;
  border-top: 1px solid var(--border-lt);
  border-bottom: 1px solid var(--border-lt);
}
.section-intro {
  max-width: 640px;
  margin-bottom: 52px;
}
.section-intro h2 {
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
}
.section-intro p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.65;
}
.problem-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-lt);
  border: 1px solid var(--border-lt);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.problem-card {
  background: var(--warm-white);
  padding: 32px 28px;
  transition: background .2s;
}
.problem-card:hover { background: #FEFEFE; }
.problem-num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--blue);
  opacity: .55;
  display: block;
  margin-bottom: 18px;
}
.problem-card h3 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.015em;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}
.problem-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════
   SECTION 3 — TOOLS GAP
═══════════════════════════════════════════ */
.tools-gap {
  background: var(--warm-white);
  padding: 88px 0;
}
.tools-gap-inner h2 {
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 18px;
  max-width: 640px;
}
.tools-gap-inner > p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.65;
  max-width: 580px;
  margin-bottom: 40px;
}
.tools-contrast {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-lt);
  border: 1px solid var(--border-lt);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.contrast-item {
  background: var(--surface);
  padding: 28px 24px;
}
.contrast-item--highlight {
  background: var(--warm-white);
  border-left: 3px solid var(--blue);
}
.contrast-label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.contrast-item--highlight .contrast-label { color: var(--blue); }
.contrast-item p {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.65;
}
.contrast-item--highlight p { color: var(--text); }

/* ═══════════════════════════════════════════
   SECTION 4 — METHOD PREVIEW
═══════════════════════════════════════════ */
.method {
  background: var(--surface);
  padding: 88px 0;
  border-top: 1px solid var(--border-lt);
  border-bottom: 1px solid var(--border-lt);
}
.method-diagram {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-top: 52px;
  margin-bottom: 48px;
}
.method-step {
  background: var(--warm-white);
  border: 1px solid var(--border-lt);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: border-color .35s ease, box-shadow .35s ease;
}
.method-step--active {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px rgba(45,95,138,.08);
}
.step-num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  color: var(--text-muted);
  margin-bottom: 14px;
  transition: color .35s ease;
}
.method-step--active .step-num { color: var(--blue); }
.method-step h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--text);
  margin-bottom: 6px;
}
.step-product {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--blue);
  background: var(--blue-tint);
  display: inline-block;
  padding: 3px 8px;
  border-radius: 3px;
  letter-spacing: .04em;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.method-step p {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.65;
}
.method-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  padding-top: 52px;
  color: var(--border);
  font-size: 22px;
  font-weight: 300;
  flex-shrink: 0;
  user-select: none;
}
.method-cta {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap .2s;
}
.method-cta:hover { gap: 9px; }

/* ═══════════════════════════════════════════
   SECTION 5 — CLARITY SCAN TEASER
═══════════════════════════════════════════ */
.scan-teaser {
  background: var(--warm-white);
  padding: 88px 0;
}
.scan-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.scan-text h2 {
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 18px;
}
.scan-text > p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 32px;
}
.scan-facts {
  display: flex;
  gap: 2rem;
  margin-bottom: 32px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.fact-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.025em;
  line-height: 1;
  margin-bottom: 4px;
}
.fact-label {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}
.scan-guarantee {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  padding-left: 14px;
  border-left: 2px solid var(--gold);
}
.scan-report {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.06);
}
.report-header {
  background: var(--blue);
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.report-tag {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.report-client {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.55);
}
.report-sections { padding: 8px 0; }
.report-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 24px;
  border-bottom: 1px solid var(--border-lt);
  transition: background .15s;
}
.report-row:last-child { border-bottom: none; }
.report-row:hover { background: var(--surface); }
.rs-num {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  color: var(--blue);
  width: 20px;
  flex-shrink: 0;
  letter-spacing: .05em;
}
.rs-title {
  font-size: 13.5px;
  color: var(--text-2);
  font-weight: 500;
}
.report-footer {
  background: var(--surface);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-top: 1px solid var(--border-lt);
}
.report-footer-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.report-footer-text {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--text-muted);
  letter-spacing: .04em;
}

/* ═══════════════════════════════════════════
   SECTION 6 — CREDIBILITY
═══════════════════════════════════════════ */
.credibility {
  background: var(--surface);
  padding: 88px 0;
  border-top: 1px solid var(--border-lt);
  border-bottom: 1px solid var(--border-lt);
}
.cred-intro {
  max-width: 640px;
  margin-bottom: 52px;
}
.cred-intro h2 {
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
}
.cred-intro p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.65;
}
.trust-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-lt);
  border: 1px solid var(--border-lt);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 40px;
}
.trust-pillar {
  background: var(--warm-white);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}
.trust-pillar-num {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .1em;
  color: var(--text-muted);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.trust-pillar h3 {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.25;
}
.trust-pillar p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  flex: 1;
}
.founder-garanzia {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-lt);
}
.founder-garanzia img {
  width: 44px; height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
}
.founder-garanzia-text {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.45;
}
.founder-garanzia-text strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
}
.cred-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  border: 1.5px solid var(--blue);
  padding: 11px 22px;
  border-radius: var(--radius);
  transition: background .18s, color .18s, transform .15s;
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
.testimonials {
  background: var(--warm-white);
  padding: 88px 0;
  border-top: 1px solid var(--border-lt);
  border-bottom: 1px solid var(--border-lt);
}
.testimonials-intro { margin-bottom: 48px; }
.testimonials-intro h2 { max-width: 520px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-lt);
  border: 1px solid var(--border-lt);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.testimonial {
  background: var(--warm-white);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.testimonial-quote {
  font-size: 15px;
  line-height: 1.72;
  color: var(--text-mid);
  flex: 1;
}
.testimonial-quote::before {
  content: '\201C';
  font-size: 28px;
  line-height: 1;
  color: var(--blue);
  display: block;
  margin-bottom: 10px;
  font-family: Georgia, serif;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border-lt);
}
.testimonial-initials {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--blue-tint);
  border: 1px solid rgba(45,95,138,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--blue);
  flex-shrink: 0;
  letter-spacing: .04em;
}
.testimonial-author strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  line-height: 1.3;
}
.testimonial-author span {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
  margin-top: 2px;
}
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}
@media (max-width: 660px) {
  .testimonials { padding: 64px 0; }
  .testimonial { padding: 24px 20px; }
}

/* ═══════════════════════════════════════════
   SECTION 7 — SERVICE SCOPE
═══════════════════════════════════════════ */
.scope {
  background: var(--warm-white);
  padding: 80px 0;
}
.scope-header { margin-bottom: 40px; }
.scope-header h2 {
  font-size: clamp(1.75rem, 2.8vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -.025em;
  color: var(--text);
}
.scope-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-lt);
  border: 1px solid var(--border-lt);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 32px;
}
.scope-item {
  background: var(--warm-white);
  padding: 24px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: background .18s;
}
.scope-item:hover { background: #FEFEFE; }
.scope-icon { width: 32px; height: 32px; flex-shrink: 0; color: var(--blue); margin-top: 1px; }
.scope-name { font-size: 13.5px; font-weight: 600; color: var(--text); line-height: 1.35; }
.scope-name small { display: block; font-size: 12px; color: var(--text-muted); font-weight: 400; margin-top: 3px; }
.scope-integrations {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.scope-integrations::before {
  content: '';
  display: block;
  width: 20px; height: 1px;
  background: var(--border);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════════ */
.final-cta {
  background: var(--surface);
  padding: 96px 0;
  border-top: 1px solid var(--border-lt);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .trust-pillars { grid-template-columns: 1fr; }
  .scope-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: flex; justify-content: center; }
  .scan-card { max-width: 420px; width: 100%; transform: none; }
  .scan-card:hover { transform: none; }
  .problem-cards { grid-template-columns: 1fr; }
  .tools-contrast { grid-template-columns: 1fr; }
  .method-diagram { grid-template-columns: 1fr; gap: 0; }
  .method-arrow { display: flex; justify-content: flex-start; padding: 10px 28px; padding-top: 10px; font-size: 20px; transform: rotate(90deg); width: 36px; margin: 0 auto; }
  .scan-inner { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 660px) {
  .hero { padding: 64px 0 36px; }
  .problems, .tools-gap, .method, .scan-teaser, .credibility, .scope, .final-cta { padding: 64px 0; }
  .nav-links { display: none; }
  .lang-toggle { display: none; }
  .btn-nav { display: none; }
  .scope-grid { grid-template-columns: 1fr; }
  .scan-facts { flex-wrap: wrap; }
  .cred-cta { flex-direction: column; align-items: flex-start; }
}

/* ═══════════════════════════════════════════
   TOOL STRIP — integration logos
═══════════════════════════════════════════ */
.tool-strip {
  background: var(--warm-white);
  border-bottom: 1px solid var(--border-lt);
  padding: 0;
}
.tool-strip-inner {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 14px 0;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.tool-strip-inner::-webkit-scrollbar { display: none; }
.tool-strip-label {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
  padding-right: 20px;
  margin-right: 20px;
  border-right: 1px solid var(--border-lt);
  opacity: .7;
}
.tool-names {
  overflow: hidden;
  flex: 1;
  min-width: 0;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
.tool-names-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 0;
  animation: toolMarquee 38s linear infinite;
  will-change: transform;
}
.tool-names-track:hover { animation-play-state: paused; }
@keyframes toolMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}
.tool-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 140px;
  height: 36px;
}
.tool-logo-img {
  height: 18px;
  width: auto;
  max-width: 90px;
  display: block;
  filter: brightness(0);
  opacity: .38;
  flex-shrink: 0;
}
@media (max-width: 660px) {
  .tool-strip { display: none; }
}

/* ═══════════════════════════════════════════
   REPORT ROW STAGGER ANIMATION
═══════════════════════════════════════════ */
.scan-report .report-row {
  animation: reportRowIn 0.3s ease-out both;
  animation-play-state: paused;
}
.scan-report.visible .report-row {
  animation-play-state: running;
}
.scan-report .report-row:nth-child(1) { animation-delay: .42s; }
.scan-report .report-row:nth-child(2) { animation-delay: .52s; }
.scan-report .report-row:nth-child(3) { animation-delay: .62s; }
.scan-report .report-row:nth-child(4) { animation-delay: .72s; }
.scan-report .report-row:nth-child(5) { animation-delay: .82s; }
.scan-report .report-row:nth-child(6) { animation-delay: .92s; }
.scan-report .report-row:nth-child(7) { animation-delay: 1.02s; }
.scan-report .report-row:nth-child(8) { animation-delay: 1.12s; }
@keyframes reportRowIn {
  from { opacity: 0; transform: translateX(-6px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* .lm-strip moved to style.css (shared across homepages + clarity-scan) */

/* ═══════════════════════════════════════════
   COST OF INACTION CALCULATOR
═══════════════════════════════════════════ */
.inaction-calc {
  background: var(--surface);
  padding: 80px 0;
}
.inaction-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.inaction-text h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text-2);
  margin-bottom: 16px;
}
.inaction-text p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
}
.inaction-calc-card {
  background: white;
  border: 1px solid var(--border-lt);
  border-radius: var(--radius-md);
  padding: 28px 28px 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,.04);
}
.calc-row {
  margin-bottom: 20px;
}
.calc-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-mid);
  margin-bottom: 8px;
}
.calc-input-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.calc-slider {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  border-radius: 2px;
  background: var(--border-lt);
  outline: none;
  cursor: pointer;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue);
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(45,95,138,.3);
}
.calc-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border: none;
  border-radius: 50%;
  background: var(--blue);
  cursor: pointer;
}
.calc-val {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 500;
  color: var(--blue);
  min-width: 28px;
  text-align: right;
}
.calc-unit {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: .04em;
  white-space: nowrap;
}
.calc-result {
  background: var(--blue-dark);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 12px;
  margin-bottom: 16px;
  border-left: 3px solid var(--gold);
}
.calc-result-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin-bottom: 8px;
}
.calc-result-val {
  font-size: 36px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}
.calc-result-sub {
  font-size: 12px;
  color: rgba(255,255,255,.7);
  line-height: 1.5;
}
.calc-cta {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  transition: color .15s;
  padding-top: 4px;
}
.calc-cta:hover { color: var(--blue-dark); text-decoration: underline; }
@media (max-width: 900px) {
  .inaction-inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 660px) {
  .inaction-calc { padding: 60px 0; }
}

/* ── Insights strip ───────────────────────────────────────────────── */
.hp-insights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border-lt);
  border: 1px solid var(--border-lt);
  border-radius: var(--radius-md);
  overflow: hidden;
}
@media (max-width: 660px) {
  .hp-insights-grid { grid-template-columns: 1fr; }
}

/* ── Ask Kai Block (A1: inline homepage conversion module) ─────────── */
.ask-kai-section {
  background: var(--blue);
  padding: 64px 0;
  border-top: 1px solid rgba(0,0,0,.06);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.ask-kai-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  align-items: center;
}
.ask-kai-section .section-label { color: rgba(255,255,255,.55); }
.ask-kai-section .section-label::before { background: rgba(255,255,255,.35); }
.ask-kai-heading {
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1.15;
  color: #fff;
  margin: 12px 0 10px;
}
.ask-kai-sub {
  font-size: 15px;
  color: rgba(255,255,255,.72);
  margin: 0;
  line-height: 1.6;
}
.ask-kai-questions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ask-kai-q {
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-md);
  padding: 14px 16px 14px 18px;
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.92);
  cursor: pointer;
  transition: background .15s, border-color .15s, transform .12s;
  font-family: inherit;
  line-height: 1.45;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.ask-kai-q::after {
  content: '→';
  flex-shrink: 0;
  opacity: .5;
  font-size: 15px;
  transition: transform .15s, opacity .15s;
}
.ask-kai-q:hover {
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.38);
  transform: translateX(2px);
}
.ask-kai-q:hover::after { transform: translateX(3px); opacity: .9; }
.ask-kai-q:active { transform: translateX(0); }
.ask-kai-q:focus-visible { outline: 2px solid rgba(255,255,255,.65); outline-offset: 2px; border-radius: var(--radius-md); }

/* Cycling industry chip */
.ask-kai-cycle {
  display: inline-block;
  position: relative;
  overflow: hidden;
  vertical-align: bottom;
  height: 1.45em;
}
.ask-kai-cycle-item {
  display: block;
  transition: opacity .35s ease, transform .35s ease;
  white-space: nowrap;
  color: var(--gold);
  font-weight: 600;
}
.ask-kai-cycle-item.is-leaving {
  position: absolute;
  top: 0; left: 0;
  opacity: 0;
  transform: translateY(-100%);
}
.ask-kai-cycle-item.is-entering {
  opacity: 0;
  transform: translateY(60%);
}
.ask-kai-cycle2-item {
  display: block;
  transition: opacity .35s ease, transform .35s ease;
  white-space: nowrap;
  color: var(--gold);
  font-weight: 600;
}
.ask-kai-cycle2-item.is-leaving {
  position: absolute;
  top: 0; left: 0;
  opacity: 0;
  transform: translateY(-100%);
}
.ask-kai-cycle2-item.is-entering {
  opacity: 0;
  transform: translateY(60%);
}

@media (max-width: 900px) {
  .ask-kai-inner { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 660px) {
  .ask-kai-section { padding: 48px 0; }
  .ask-kai-q { font-size: 13.5px; }
}
