 .hero { background: linear-gradient(160deg, #fff 0%, #fafbf6 100%); }

  /* Legal visual */
  .legal-visual { position: relative; width: 100%; height: 400px; }

  .legal-contract {
    position: absolute; left: 28px; top: 36px;
    width: 228px; height: 285px;
    border-radius: 22px; background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 24px 56px rgba(0,0,0,.15);
    overflow: hidden;
    animation: cardFloat 6s ease-in-out infinite;
  }
  .legal-contract-top { background: #111; height: 52px; display: flex; align-items: center; padding: 0 16px; color: var(--yellow); font-weight: 900; font-size: 12px; letter-spacing: .07em; }
  .lc-row { display: flex; align-items: center; gap: 8px; margin: 10px 16px; }
  .lc-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); flex: 0 0 auto; }
  .lc-line { flex: 1; height: 9px; border-radius: 999px; background: #eaeaea; }
  .lc-line.s { width: 50%; flex: none; }
  .lc-stamp {
    position: absolute; bottom: 18px; right: 18px;
    width: 56px; height: 56px;
    border-radius: 50%;
    border: 5px solid var(--green);
    background: rgba(255,255,255,.9);
    display: grid; place-items: center;
    color: var(--green); font-weight: 900; font-size: 10px;
    transform: rotate(-15deg);
    box-shadow: 0 8px 20px rgba(31,122,16,.2);
  }

  .legal-b2 {
    position: absolute; left: 50px; top: 56px;
    width: 228px; height: 285px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--yellow-soft), #f5edcc);
    border: 1px solid #e0d090;
    opacity: .7; z-index: -1;
    transform: rotate(4deg);
  }

  .legal-badge-priv {
    position: absolute; right: 22px; top: 44px;
    background: #111; color: #fff;
    border-radius: 14px; padding: 12px 16px;
    font-weight: 900; font-size: 13px;
    box-shadow: 0 16px 36px rgba(0,0,0,.22);
    animation: badgeFloat 4.5s ease-in-out infinite;
  }
  .legal-badge-priv small { display: block; color: var(--yellow); font-size: 11px; font-weight: 700; margin-top: 3px; }

  .legal-badge-vendor {
    position: absolute; right: 38px; bottom: 76px;
    background: var(--green); color: #fff;
    border-radius: 14px; padding: 12px 16px;
    font-weight: 900; font-size: 13px;
    box-shadow: 0 14px 30px rgba(31,122,16,.28);
    animation: badgeFloat 5s ease-in-out infinite reverse;
  }
  .legal-badge-vendor small { display: block; color: rgba(255,255,255,.75); font-size: 11px; font-weight: 700; margin-top: 3px; }

  .dot-l1 { width: 18px; height: 18px; background: var(--yellow); top: 22px; right: 148px; animation-delay: .4s; }
  .dot-l2 { width: 26px; height: 26px; background: var(--green); bottom: 52px; left: 22px; animation-delay: 1.2s; }
  .dot-l3 { width: 12px; height: 12px; background: #111; top: 200px; right: 26px; animation-delay: 1.9s; }

  @keyframes cardFloat {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-12px) rotate(.5deg); }
  }



/* --- Proof Bar Section Styles --- */
.proof-section {
    padding: 16px 0 40px;
}

/* --- Challenges Section Custom Card --- */
.challenge-card-highlight {
    background: linear-gradient(135deg, var(--green-soft), #e0f0da);
    border-color: var(--green-mid);
}

.challenge-card-highlight .challenge-num {
    background: #fff;
}

.challenge-card-highlight h3 {
    color: var(--green-dark);
}

/* --- How Kleeto Helps Custom Layout --- */
.help-grid-container {
    margin-top: 28px;
    display: grid;
    gap: 10px;
}

.repository-title {
    font-weight: 900;
    color: var(--green-dark);
    font-size: 15px;
    margin-bottom: 6px;
}

/* --- Workflow Section Styles --- */
.workflow-subtext {
    color: rgba(255, 255, 255, .6);
}

/* --- FAQ Section Styles --- */
.faq-cta-btn {
    margin-top: 8px;
}

/* --- CTA Banner Section Styles --- */
.cta-box-right-column {
    display: grid;
    gap: 14px;
    min-width: 200px;
}

.cta-stat-card {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 16px;
    padding: 18px 20px;
    color: #fff;
}

.cta-stat-number {
    font-size: 28px;
    font-weight: 900;
    color: var(--yellow);
}

.cta-stat-label {
    font-size: 12px;
    font-weight: 700;
    opacity: .7;
    margin-top: 4px;
}