      /* ── FEATURES ── */
      .feat-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 22px;
        margin-top: 52px;
      }
      .feat-card {
        background: #fff;
        border: 1px solid var(--gray-200);
        border-radius: var(--r-lg);
        padding: 30px 26px;
        transition: all 0.24s;
        position: relative;
        overflow: hidden;
      }
      .feat-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--accent), var(--teal));
        opacity: 0;
        transition: opacity 0.24s;
      }
      .feat-card:hover {
        box-shadow: var(--sh-md);
        transform: translateY(-4px);
      }
      .feat-card:hover::before {
        opacity: 1;
      }
      .feat-icon {
        width: 46px;
        height: 46px;
        background: var(--gray-100);
        border-radius: var(--r-sm);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 18px;
        font-size: 20px;
        transition: background 0.24s;
      }
      .feat-card:hover .feat-icon {
        background: var(--accent-glow);
      }
      .feat-title {
        font-family:
          "Pretendard",
          -apple-system,
          BlinkMacSystemFont,
          "Segoe UI",
          sans-serif;
        font-size: 20px;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 30px;
        letter-spacing: -0.35px;
        line-height: 1.4;
        text-align: center;
      }
      .feat-desc {
        font-size: 13px;
        color: var(--gray-600);
        line-height: 1.8;
      }
      .feat-em {
        font-weight: inherit;
        color: inherit;
        padding: 0.08em 0.24em 0.14em 0.24em;
        margin: 0 -0.24em;
        border-radius: 8px;
        box-decoration-break: clone;
        -webkit-box-decoration-break: clone;
        background-image: linear-gradient(
          transparent 16%,
          rgba(43, 126, 245, 0.18) 16%
        );
        background-repeat: no-repeat;
        background-size: 0% 100%;
        background-position: 0 100%;
        transition:
          background-size 0.45s ease,
          color 0.2s ease;
      }
      .feat-card:hover .feat-em {
        background-size: 100% 100%;
        color: var(--text-dark);
      }
      .feat-em {
        font-weight: 500;
        transition:
          font-weight 0.2s ease,
          color 0.2s ease;
      }
      .feat-card--cta {
        background: linear-gradient(135deg, var(--navy), var(--navy-light));
        border-color: transparent;
      }
      .feat-card--cta .feat-icon {
        background: rgba(255, 255, 255, 0.1);
      }
      .feat-card--cta .feat-title {
        color: #fff;
      }
      .feat-card--cta .feat-desc {
        color: rgba(255, 255, 255, 0.55);
        margin-bottom: 18px;
      }

      /* ── STATS ── */
      .stats-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        margin-top: 52px;
      }
      .stat-card {
        text-align: center;
        padding: 36px 24px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: var(--r-lg);
      }
      .stat-num {
        font-family: "DM Sans", sans-serif;
        font-size: 48px;
        font-weight: 700;
        color: var(--accent);
        letter-spacing: -1px;
        line-height: 1;
      }
      .stat-unit {
        font-size: 20px;
        color: var(--teal);
        font-weight: 700;
      }
      .stat-label {
        font-size: 14px;
        color: #fff;
        font-weight: 600;
        margin-top: 10px;
        margin-bottom: 6px;
      }
      .stat-desc {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.45);
        line-height: 1.6;
      }

