/* ─── Hero ─────────────────────────────────────── */
    .sol-hero {
      padding: 0;
      overflow: hidden;
      background: #eef4ff;
      border-bottom: 1px solid #dce6f5;
    }
    .sol-hero-image { display:block;width:100%;height:auto;object-fit:contain; }

    /* ─── Solutions Grid ────────────────────────────── */
    .sol-grid-section {
      background: var(--off-white);
      padding: var(--section-space) 0;
    }
    .sol-grid-section .section-title { text-align: center; margin-bottom: 8px; }
    .sol-grid-section .section-sub   { text-align: center; margin: 0 auto 44px; max-width: 500px; }
    .sol-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0,1fr));
      gap: 18px;
    }
    .sol-card {
      position: relative;
      min-height: 174px;
      padding: 24px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 18px;
      overflow: hidden;
      background: rgba(255,255,255,.96);
      border: 1px solid #e1e8f2;
      border-radius: 16px;
      box-shadow: 0 8px 24px rgba(23,48,92,.055);
      transition: box-shadow .2s,transform .2s,border-color .2s;
    }
    .sol-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 24px;
      right: 24px;
      height: 3px;
      border-radius: 0 0 6px 6px;
      background: var(--blue);
      opacity: 0;
      transform: scaleX(.45);
      transition: opacity .2s,transform .2s;
    }
    .sol-card:hover {
      box-shadow: 0 16px 34px rgba(23,48,92,.1);
      transform: translateY(-4px);
      border-color: #cddbf3;
    }
    .sol-card:hover::before { opacity: 1; transform: scaleX(1); }
    .sol-card .sol-icon { width: 52px; height: 52px; flex: 0 0 52px; margin: 0; border-radius: 14px; box-shadow: inset 0 0 0 1px rgba(37,99,235,.06); }
    .sol-card-copy h4 { margin: 0 0 8px; font-size: 14px; font-weight: 700; color: var(--navy-text); line-height: 1.35; }
    .sol-card-copy p { margin: 0; font-size: 12.5px; color: var(--gray-500); line-height: 1.6; }

    .workflow-section { padding: var(--section-space) 0; background: #fff; border-bottom: 1px solid #e5e7eb; }
    .works-title { margin-bottom: 32px; text-align: center; color: var(--navy-text); font-size: clamp(28px,3vw,38px); font-weight: 800; line-height: 1.2; letter-spacing: -.025em; }
    .works-title span { color: var(--blue); }
    .works-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 56px; }
    .work-step { position: relative; text-align: center; }
    .work-step:not(:last-child)::after { content: ""; position: absolute; z-index: 0; top: 31px; left: calc(50% + 48px); width: calc(100% + 8px); border-top: 2px dotted #82aaf6; }
    .work-icon { position: relative; z-index: 1; width: 64px; height: 64px; margin: 0 auto 17px; display: grid; place-items: center; border: 1px solid #dce7fb; border-radius: 50%; color: var(--blue); background: #f2f6ff; font-size: 22px; }
    .work-number { position: absolute; right: -2px; bottom: -5px; width: 23px; height: 23px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--blue); border: 3px solid #fff; font-size: 10px; font-weight: 800; }
    .work-step h3 { margin-bottom: 8px; color: var(--navy-text); font-size: 13px; font-weight: 700; line-height: 1.45; }
    .work-step p { color: var(--gray-500); font-size: 11.5px; line-height: 1.55; }

    /* ─── Verification Confidence ───────────────────── */
    .vc-section {
      background: #fff;
      padding: var(--section-space) 0;
    }
    .vc-intro {
      max-width: 640px;
      margin-bottom: 60px;
    }
    .vc-label {
      display: inline-block;
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--blue);
      background: rgba(37,99,235,0.07);
      border: 1px solid rgba(37,99,235,0.2);
      padding: 5px 14px;
      border-radius: 100px;
      margin-bottom: 22px;
    }
    .vc-intro h2 {
      font-size: clamp(26px, 4vw, 44px);
      font-weight: 900;
      color: var(--navy-text);
      line-height: 1.18;
      margin: 0 0 18px;
      letter-spacing: -0.3px;
    }
    .vc-intro p {
      color: var(--gray-500);
      font-size: 15.5px;
      line-height: 1.75;
      margin: 0;
    }

    /* ─── Gauge Layout ──────────────────────────────── */
    .gauge-row {
      display: flex;
      align-items: center;
      gap: 56px;
    }
    .gauge-left {
      flex: 0 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .gauge-svg-wrap {
      width: 340px;
    }
    .gauge-svg-wrap svg {
      width: 100%;
      height: auto;
      display: block;
    }
    .gauge-image {
      width: 100%;
      height: auto;
      display: block;
    }
    .gauge-score-label {
      font-size: 12.5px;
      color: var(--gray-400);
      font-weight: 500;
      margin-top: 8px;
      letter-spacing: 0.3px;
      text-align: center;
    }

    /* ─── Legend ────────────────────────────────────── */
    .gauge-legend {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .legend-item {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 18px 22px;
      border-radius: 14px;
      border: 1.5px solid transparent;
    }
    .legend-item.li-green  { background: #f0fdf6; border-color: #a7f3d0; }
    .legend-item.li-orange { background: #fffbeb; border-color: #fde68a; }
    .legend-item.li-red    { background: #fff5f5; border-color: #fecaca; }
    .legend-dot {
      width: 13px; height: 13px; border-radius: 50%; flex-shrink: 0;
    }
    .legend-dot.green  { background: #10C987; }
    .legend-dot.orange { background: #F59E0B; }
    .legend-dot.red    { background: #EF4444; }
    .legend-range {
      font-size: 15px; font-weight: 900; color: var(--navy-text); min-width: 72px;
    }
    .legend-details { flex: 1; }
    .legend-name   { font-size: 13.5px; font-weight: 700; color: var(--navy-text); line-height: 1.3; }
    .legend-action { font-size: 11.5px; color: var(--gray-400); margin-top: 2px; }
    .legend-badge {
      font-size: 10.5px; font-weight: 800;
      padding: 4px 12px; border-radius: 100px; white-space: nowrap;
    }
    .legend-badge.green  { background: #10C987; color: #fff; }
    .legend-badge.orange { background: #F59E0B; color: #fff; }
    .legend-badge.red    { background: #EF4444; color: #fff; }

    /* ─── What Affects Score ────────────────────────── */
    .affects-section {
      background: var(--off-white);
      padding: var(--section-space) 0;
      border-top: 1px solid #e5e7eb;
    }
    .affects-head { text-align: center; margin-bottom: 52px; }
    .affects-head h2 {
      font-size: clamp(24px, 3.5vw, 40px); font-weight: 900;
      color: var(--navy-text); margin: 0 0 12px; letter-spacing: -0.3px;
    }
    .affects-head p { color: var(--gray-500); font-size: 15px; margin: 0; }
    .affects-cards {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    .affect-card {
      background: #fff;
      border: 1.5px solid #e5e7eb;
      border-radius: 18px;
      padding: 30px 24px 26px;
      transition: box-shadow 0.22s, transform 0.22s;
    }
    .affect-card:hover {
      box-shadow: 0 8px 36px rgba(37,99,235,0.10);
      transform: translateY(-3px);
    }
    .affect-icon {
      width: 54px; height: 54px; border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      font-size: 22px; margin-bottom: 20px;
    }
    .affect-icon.blue   { background: rgba(37,99,235,0.09);  color: #2563EB; }
    .affect-icon.green  { background: rgba(16,201,135,0.09); color: #059669; }
    .affect-icon.purple { background: rgba(139,92,246,0.10); color: #7c3aed; }
    .affect-icon.orange { background: rgba(245,158,11,0.10); color: #d97706; }
    .affect-card h4 { font-size: 15px; font-weight: 800; color: var(--navy-text); margin: 0 0 8px; }
    .affect-card p  { font-size: 13px; color: var(--gray-500); line-height: 1.65; margin: 0; }

    /* ─── Confidence Framework ──────────────────────── */
    .framework-section {
      background: #fff;
      padding: var(--section-space) 0;
      border-top: 1px solid #e5e7eb;
    }
    .framework-head { text-align: center; margin-bottom: 52px; }
    .framework-head h2 {
      font-size: clamp(24px, 3.5vw, 40px); font-weight: 900;
      color: var(--navy-text); margin: 0 0 12px; letter-spacing: -0.3px;
    }
    .framework-head p { color: var(--gray-500); font-size: 15px; margin: 0; }
    .framework-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .fw-card {
      border-radius: 22px; padding: 38px 30px 34px;
      position: relative; overflow: hidden;
    }
    .fw-card::after {
      content: ''; position: absolute;
      top: -24px; right: -24px;
      width: 96px; height: 96px; border-radius: 50%; opacity: 0.14;
    }
    .fw-card.fw-green  { background: #f0fdf6; border: 2px solid #a7f3d0; }
    .fw-card.fw-green::after  { background: #10C987; }
    .fw-card.fw-orange { background: #fffbeb; border: 2px solid #fde68a; }
    .fw-card.fw-orange::after { background: #F59E0B; }
    .fw-card.fw-red    { background: #fff5f5; border: 2px solid #fecaca; }
    .fw-card.fw-red::after    { background: #EF4444; }
    .fw-icon { font-size: 30px; margin-bottom: 18px; position: relative; z-index:1; }
    .fw-card.fw-green  .fw-icon { color: #10C987; }
    .fw-card.fw-orange .fw-icon { color: #F59E0B; }
    .fw-card.fw-red    .fw-icon { color: #EF4444; }
    .fw-card h3 {
      font-size: 22px; font-weight: 900; color: var(--navy-text);
      margin: 0 0 4px; position: relative; z-index:1;
    }
    .fw-range { font-size: 13px; color: var(--gray-400); font-weight: 500; margin: 0 0 18px; position: relative; z-index:1; }
    .fw-desc  { font-size: 14px; color: var(--gray-700); line-height: 1.68; margin: 0 0 22px; position: relative; z-index:1; }
    .fw-tag {
      display: inline-block; font-size: 11px; font-weight: 800;
      padding: 5px 16px; border-radius: 100px; letter-spacing: 0.4px; position: relative; z-index:1;
    }
    .fw-card.fw-green  .fw-tag { background: #10C987; color: #fff; }
    .fw-card.fw-orange .fw-tag { background: #F59E0B; color: #fff; }
    .fw-card.fw-red    .fw-tag { background: #EF4444; color: #fff; }

    /* ─── CTA Banner ────────────────────────────────── */
    .sol-cta {
      background: linear-gradient(120deg,#071633,#081d4d);
      padding: 56px 0; text-align: center;
    }
    .sol-cta h2 {
      font-size: clamp(22px, 4vw, 42px); font-weight: 900;
      color: #fff; margin: 0 0 14px; letter-spacing: -0.3px;
    }
    .sol-cta h2 span { color: #10C987; }
    .sol-cta p {
      color: rgba(255,255,255,0.62); font-size: 16px;
      margin: 0 auto 36px; max-width: 480px; line-height: 1.7;
    }
    .btn-cta-green {
      display: inline-flex; align-items: center; gap: 8px;
      background: #155be7; color: #fff; font-size: 15px; font-weight: 800;
      padding: 15px 36px; border-radius: 999px; text-decoration: none;
      transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 4px 20px rgba(21,91,231,.32);
    }
    .btn-cta-green:hover { background: #104fc4; transform: translateY(-2px); }

    /* ─── Responsive ─────────────────────────────────── */
    @media (max-width: 1024px) {
      .affects-cards { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 900px) {
      .works-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 38px 48px; }
      .work-step::after { display: none; }
      .sol-grid { grid-template-columns: repeat(2, 1fr); }
      .framework-cards { grid-template-columns: 1fr; gap: 16px; }
      .gauge-row { flex-direction: column; gap: 40px; align-items: center; }
      .gauge-left { width: 100%; align-items: center; }
      .gauge-svg-wrap { width: 100%; max-width: 320px; }
      .gauge-legend { width: 100%; max-width: 560px; }
    }
    @media (max-width: 640px) {
      .workflow-section { padding: var(--section-space-mobile) 0; }
      .works-title { margin-bottom: 26px; font-size: 26px; }
      .works-grid { grid-template-columns: 1fr; gap: 30px; }
      .work-step p { max-width: 260px; margin: 0 auto; }
      .sol-grid-section,.vc-section,.affects-section,.framework-section { padding: var(--section-space-mobile) 0; }
      .sol-cta { padding: var(--section-space-mobile) 0; }
      .sol-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
      .sol-card { min-height: 160px; padding: 22px; }
      .affects-cards { grid-template-columns: 1fr 1fr; gap: 14px; }
      .gauge-svg-wrap { max-width: 280px; }
      .legend-item { padding: 14px 16px; gap: 10px; flex-wrap: wrap; }
      .legend-range { min-width: 58px; font-size: 13px; }
      .legend-name { font-size: 12.5px; }
      .legend-action { font-size: 11px; }
      .legend-badge { font-size: 10px; padding: 3px 10px; }
    }
    @media (max-width: 480px) {
      .affects-cards { grid-template-columns: 1fr; }
    }
    @media (max-width: 420px) {
      .sol-grid { grid-template-columns: 1fr; }
      .sol-card { min-height: 0; padding: 20px; flex-direction: row; align-items: center; gap: 16px; }
      .gauge-svg-wrap { max-width: 260px; }
    }
